Files
solver/GNN/OndselSolver/Power.cpp
forbes-0023 98051ba0c9 feat: add Phase 1 constraint solver addon, move prior content to GNN/
- Move existing OndselSolver, GNN ML layer, and tooling into GNN/
  directory for integration in later phases
- Add Create addon scaffold: package.xml, Init.py
- Add expression DAG with eval, symbolic diff, simplification
- Add parameter table with fixed/free variable tracking
- Add quaternion rotation as polynomial Expr trees
- Add RigidBody entity (7 DOF: position + unit quaternion)
- Add constraint classes: Coincident, DistancePointPoint, Fixed
- Add Newton-Raphson solver with symbolic Jacobian + numpy lstsq
- Add pre-solve passes: substitution + single-equation
- Add DOF counting via Jacobian SVD rank
- Add KindredSolver IKCSolver bridge for kcsolve integration
- Add 82 unit tests covering all modules

Registers as 'kindred' solver via kcsolve.register_solver() when
loaded by Create's addon_loader.
2026-02-20 20:35:47 -06:00

72 lines
1.9 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <algorithm>
#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::copyWith(Symsptr argx, Symsptr argy)
{
return std::make_shared<Power>(argx, argy);
}
double MbD::Power::getValue()
{
return std::pow(x->getValue(), y->getValue());
}
Symsptr MbD::Power::clonesptr()
{
return std::make_shared<Power>(*this);
}
Symsptr MbD::Power::simplifyUntil(Symsptr sptr, std::shared_ptr<std::unordered_set<Symsptr>> set)
{
auto itr = std::find_if(set->begin(), set->end(), [sptr](Symsptr sym) {return sptr.get() == sym.get(); });
if (itr != set->end()) return sptr;
auto newx = x->simplifyUntil(x, set);
auto newy = y->simplifyUntil(y, set);
if (y->isConstant() && y->getValue() == 1) {
return newx;
}
auto copy = copyWith(newx, newy);
return copy;
}
std::ostream& MbD::Power::printOn(std::ostream& s) const
{
s << "pow(" << *x << "," << *y << ")";
return s;
}