ASMT output, MBDyn input and output done.

This commit is contained in:
Aik-Siong Koh
2023-11-06 18:00:24 -07:00
parent 19ec0259b9
commit 11a5cff30b
96 changed files with 8466 additions and 4042 deletions

View File

@@ -19,8 +19,13 @@ double MbD::Exponential::getValue()
return std::log(xx->getValue());
}
Symsptr MbD::Exponential::copyWith(Symsptr arg)
{
return std::make_shared<Exponential>(arg);
}
std::ostream& MbD::Exponential::printOn(std::ostream& s) const
{
s << "exp(" << xx << ")";
s << "exp(" << *xx << ")";
return s;
}