File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,21 @@ int main(int argc, const char* argv[]) {
1111
1212 std::map<std::string, std::string> inputs;
1313 Variables *theVars = new Variables ();
14+ std::string evn (" data/InputEvn.txt" );
15+ std::string atpcost (" data/InputATPCost.txt" );
16+ std::string enzyme (" data/InputEnzyme.txt" );
17+ std::string grn (" data/InputGRNC.txt" );
18+
19+ std::cerr << " evn: " << evn << std::endl;
20+ std::cerr << " atpcost: " << atpcost << std::endl;
21+ std::cerr << " enzyme: " << enzyme << std::endl;
22+ std::cerr << " grn: " << grn << std::endl;
1423
1524 // Read files
16- theVars->readParam (" data/InputEvn.txt " , inputs);
17- theVars->readParam (" data/InputATPCost.txt " , inputs);
18- theVars->readEnzymeAct (" data/InputEnzyme.txt " );
19- theVars->readGRN (" data/InputGRNC.txt " );
25+ theVars->readParam (evn , inputs);
26+ theVars->readParam (atpcost , inputs);
27+ theVars->readEnzymeAct (enzyme );
28+ theVars->readGRN (grn );
2029
2130 double Tp = theVars->Tp ;
2231 theVars->record = false ;
You can’t perform that action at this time.
0 commit comments