* 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
53 lines
1.4 KiB
C++
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;
|
|
}
|