Files
solver/MbDCode/Ln.cpp
2023-07-30 12:08:39 -06:00

13 lines
154 B
C++

#include "Ln.h"
using namespace MbD;
MbD::Ln::Ln(Symsptr arg) : FunctionX(arg)
{
}
double MbD::Ln::getValue()
{
return std::log(xx->getValue());
}