Files
solver/OndselSolver/Integral.cpp
2024-04-03 08:56:40 +02:00

51 lines
1.2 KiB
C++

#include "Integral.h"
using namespace MbD;
MbD::Integral::Integral(Symsptr, Symsptr)
{
assert(false);
}
void MbD::Integral::arguments(Symsptr args)
{
auto arguments = args->getTerms();
xx = arguments->at(0);
integrand = arguments->at(1);
expression = integrand->integrateWRT(xx);
}
Symsptr MbD::Integral::expandUntil(Symsptr, std::shared_ptr<std::unordered_set<Symsptr>> set)
{
auto expand = expression->expandUntil(expression, set);
auto answer = std::make_shared<Integral>();
answer->xx = xx;
answer->expression = expand;
answer->integrand = integrand;
answer->integrationConstant = integrationConstant;
return answer;
}
Symsptr MbD::Integral::simplifyUntil(Symsptr, std::shared_ptr<std::unordered_set<Symsptr>> set)
{
auto simple = expression->simplifyUntil(expression, set);
auto answer = std::make_shared<Integral>();
answer->xx = xx;
answer->expression = simple;
answer->integrand = integrand;
answer->integrationConstant = integrationConstant;
return answer;
}
void MbD::Integral::setIntegrationConstant(double integConstant)
{
integrationConstant = sptrConstant(integConstant);
}
std::ostream& MbD::Integral::printOn(std::ostream& s) const
{
s << *expression << " + ";
s << *integrationConstant;
return s;
}