switch from hpp to cpp

This commit is contained in:
Hannes Signer 2023-08-02 10:50:14 +02:00
parent 33fd35a65a
commit e19171feaa
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
using namespace std;
using namespace Eigen;
inline MatrixXd CSV2Eigen(string file2Convert){
MatrixXd CSV2Eigen(string file2Convert){
vector<double> matrixEntries;

View File

@ -1,5 +1,5 @@
#include <tug/Simulation.hpp>
#include "csv2eigen.hpp"
#include "csv2eigen.cpp"
#include "Eigen/Core"
int main(int argc, char *argv[]) {