-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hi,
I encountered the following compilation issue while using fgm_code:
/fgm-cpp-0.0.2/fgm.cpp:3: /usr/include/Eigen/src/Core/CwiseBinaryOp.h:48:8: error: incomplete type ‘Eigen::internal::cwise_promote_storage_order<Eigen::Sparse, Eigen::Sparse, 0, 1>’ used in nested name specifier
and cmake info as follow:
`Make Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 2.8.12 will be removed from a future version of
CMake.
Update the VERSION argument value or use a ... suffix to tell
CMake that the project does not need compatibility with older versions.
-- The C compiler identification is GNU 9.4.0
-- The CXX compiler identification is GNU 9.4.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found PythonInterp: /usr/bin/python (found version "2.7.17")
-- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython2.7.so (found version "2.7.17")
-- Found Boost: /usr/include (found version "1.65.1") found components: python
-- Configuring done
-- Generating done
-- Build files have been written to: /home/cidi/Downloads/fgm-cpp-0.0.2/build
`
Another question
function fgm(Eigen::MatrixXd& KP, Eigen::MatrixXd& KQ,
Eigen::MatrixXd& Ct, Eigen::MatrixXd& asgTX,
std::map<std::string, Eigen::MatrixXd>& gph1,
std::map<std::string, Eigen::MatrixXd>& gph2,
int nAlp = 101, int nItMa = 100, int nHst = 10);
What do Ct and asgTX matrix mean?
Looking forward to your reply.
BR