Files
solver/OndselSolver/Negative.cpp
2023-11-14 09:05:46 -07:00

53 lines
1.4 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "Negative.h"
#include "Constant.h"
using namespace MbD;
MbD::Negative::Negative(Symsptr arg) : FunctionX(arg)
{
}
double MbD::Negative::getValue()
{
return -xx->getValue();
}
Symsptr MbD::Negative::differentiateWRTx()
{
return sptrConstant(-1);
}
Symsptr MbD::Negative::expandUntil(Symsptr sptr, std::shared_ptr<std::unordered_set<Symsptr>> set)
{
auto expand = xx->expandUntil(xx, set);
return std::make_shared<Negative>(expand);
}
Symsptr MbD::Negative::simplifyUntil(Symsptr sptr, std::shared_ptr<std::unordered_set<Symsptr>> set)
{
auto simple = xx->simplifyUntil(xx, set);
if (simple->isConstant()) {
return sptrConstant(-simple->getValue());
}
return std::make_shared<Negative>(simple);
}
Symsptr MbD::Negative::copyWith(Symsptr arg)
{
return std::make_shared<Negative>(arg);
}
std::ostream& MbD::Negative::printOn(std::ostream& s) const
{
s << "-(" << *xx << ")";
return s;
}