Files
solver/OndselSolver/Power.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

48 lines
1.3 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include "Power.h"
#include "Constant.h"
#include "Ln.h"
using namespace MbD;
MbD::Power::Power()
{
}
MbD::Power::Power(Symsptr bse, Symsptr ex) : FunctionXY(bse, ex)
{
}
Symsptr MbD::Power::differentiateWRTx()
{
auto yminus1 = Symbolic::sum(y, sptrConstant(-1.0));
auto power = Symbolic::raisedTo(x, yminus1);
auto deriv = Symbolic::times(y, power);
return deriv->simplified(deriv);
}
Symsptr MbD::Power::differentiateWRTy()
{
auto lnterm = std::make_shared<Ln>(x);
auto deriv = Symbolic::times(clonesptr(), lnterm);
return deriv->simplified();
}
Symsptr MbD::Power::simplifyUntil(Symsptr, std::shared_ptr<std::unordered_set<Symsptr>>)
{
assert(false);
return Symsptr();
}
double MbD::Power::getValue()
{
return std::pow(x->getValue(), y->getValue());
}