Name Date Size #Lines LOC

..--

READMEH A D25-Apr-2025262 106

binary_library.cppH A D25-Apr-20254.1 KiB186123

binary_library.hH A D25-Apr-20253.3 KiB7247

example.cH A D25-Apr-20251.6 KiB6645

README

1This is an example of how one can wrap some of Eigen into a C library.
2
3To try this with GCC, do:
4
5  g++ -c binary_library.cpp -O2 -msse2 -I ../..
6  gcc example.c binary_library.o -o example -lstdc++
7  ./example
8
9TODO: add CMakeLists, add more explanations here
10