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

82 lines
2.5 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <iostream>
#include <limits>
#include <memory>
#include <chrono>
#include "MatrixSolver.h"
#include "SparseMatrix.h"
#include "FullMatrix.h"
#include "SingularMatrixError.h"
using namespace MbD;
void MatrixSolver::initialize()
{
Solver::initialize();
singularPivotTolerance = 4 * std::numeric_limits<double>::epsilon();
}
void MatrixSolver::setSystem(Solver*)
{
}
FColDsptr MatrixSolver::solvewithsaveOriginal(SpMatDsptr spMat, FColDsptr fullCol, bool saveOriginal)
{
this->timedSolvewithsaveOriginal(spMat, fullCol, saveOriginal);
return answerX;
}
FColDsptr MatrixSolver::solvewithsaveOriginal(FMatDsptr fullMat, FColDsptr fullCol, bool saveOriginal)
{
this->timedSolvewithsaveOriginal(fullMat, fullCol, saveOriginal);
return answerX;
}
FColDsptr MatrixSolver::timedSolvewithsaveOriginal(SpMatDsptr spMat, FColDsptr fullCol, bool saveOriginal)
{
auto start = std::chrono::steady_clock::now();
this->basicSolvewithsaveOriginal(spMat, fullCol, saveOriginal);
auto end = std::chrono::steady_clock::now();
auto diff = end - start;
millisecondsToRun = std::chrono::duration<double, std::milli>(diff).count();
//std::cout << "milliseconds to run = " << millisecondsToRun << std::endl;
return answerX;
}
FColDsptr MatrixSolver::timedSolvewithsaveOriginal(FMatDsptr, FColDsptr, bool)
{
return FColDsptr();
}
void MatrixSolver::findScalingsForRowRange(size_t begin, size_t end)
{
//"Row element * scaling <= 1.0."
rowScalings = std::make_shared<FullColumn<double>>(m);
for (size_t i = begin; i < end; i++)
{
double maxRowMagnitude = this->getmatrixArowimaxMagnitude(i);
if (maxRowMagnitude == 0.0) throwSingularMatrixError("");
rowScalings->at(i) = 1.0 / maxRowMagnitude;
}
}
void MatrixSolver::throwSingularMatrixError(const std::string& chars)
{
throw SingularMatrixError(chars);
}
void MatrixSolver::throwSingularMatrixError(const std::string& chars, std::shared_ptr<FullColumn<size_t>> redunEqnNos)
{
throw SingularMatrixError(chars, redunEqnNos);
}