runOndselPiston, runPiston execute correctly

This commit is contained in:
Aik-Siong Koh
2023-06-30 19:48:30 -06:00
parent c30ee64b89
commit cb27f2344b
154 changed files with 2786 additions and 1605 deletions

View File

@@ -3,7 +3,7 @@
using namespace MbD;
MbD::FunctionWithManyArgs::FunctionWithManyArgs()
FunctionWithManyArgs::FunctionWithManyArgs()
{
terms = std::make_shared<std::vector<Symsptr>>();
}
@@ -29,7 +29,7 @@ FunctionWithManyArgs::FunctionWithManyArgs(std::shared_ptr<std::vector<Symsptr>>
terms->push_back(_terms->at(i));
}
std::shared_ptr<std::vector<Symsptr>> MbD::FunctionWithManyArgs::getTerms()
std::shared_ptr<std::vector<Symsptr>> FunctionWithManyArgs::getTerms()
{
return terms;
}