Implement Power function

This commit is contained in:
Aik-Siong Koh
2025-08-07 20:37:33 -06:00
committed by Chris Hennes
parent 09d6175a2b
commit 1a8fdc32d3
27 changed files with 220 additions and 44 deletions

View File

@@ -22,6 +22,10 @@ std::shared_ptr<ASMTTime> MbD::ASMTTime::With()
return asmt;
}
MbD::ASMTTime::ASMTTime(Symsptr arg) : ExpressionX(arg)
{
}
void MbD::ASMTTime::deleteMbD()
{
xx = nullptr;
@@ -56,3 +60,8 @@ void MbD::ASMTTime::setValue(double val)
{
xx->setValue(val);
}
Symsptr MbD::ASMTTime::copyWith(Symsptr arg)
{
return std::make_shared<ASMTTime>(arg);
}