Files
solver/OndselSolver/Negative.cpp
John Dupuy 87ed8700e2 modify code to suppress or fix warnings in gcc and clang (#41)
* first fix to start branch PR

* explicit conversion from sizet to int

* Array.h and DiagonalMatrix.h

* many sizet to int conversions

* removed some unused variables and added expl overrides

* removed many unused parameters

* more typing

* even more

* last of the easy changes
2023-12-08 10:00:00 -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, 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, 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;
}