/*************************************************************************** * Copyright (c) 2023 Ondsel, Inc. * * * * This file is part of OndselSolver. * * * * See LICENSE file for details about copyright. * ***************************************************************************/ #include "RedundantConstraint.h" using namespace MbD; void RedundantConstraint::removeRedundantConstraints(std::shared_ptr> redundantEqnNos) { } bool RedundantConstraint::isRedundant() { return true; } std::string RedundantConstraint::classname() { auto str = Item::classname() + "->" + constraint->classname(); return str; } ConstraintType RedundantConstraint::type() { return redundant; } void MbD::RedundantConstraint::fillqsuddotlam(FColDsptr col) { } void RedundantConstraint::fillqsulam(FColDsptr col) { } void RedundantConstraint::postInput() { } void RedundantConstraint::prePosIC() { } void RedundantConstraint::fillEssenConstraints(std::shared_ptr sptr, std::shared_ptr>> essenConstraints) { } void RedundantConstraint::fillDispConstraints(std::shared_ptr sptr, std::shared_ptr>> dispConstraints) { } void RedundantConstraint::fillPerpenConstraints(std::shared_ptr sptr, std::shared_ptr>> perpenConstraints) { } void RedundantConstraint::fillConstraints(std::shared_ptr sptr, std::shared_ptr>> redunConstraints) { } void RedundantConstraint::fillRedundantConstraints(std::shared_ptr sptr, std::shared_ptr>> redunConstraints) { redunConstraints->push_back(sptr); } void RedundantConstraint::setqsulam(FColDsptr col) { } void RedundantConstraint::setqsudotlam(FColDsptr col) { } void RedundantConstraint::fillPosICError(FColDsptr col) { } void RedundantConstraint::fillPosKineError(FColDsptr col) { } void RedundantConstraint::fillPosKineJacob(SpMatDsptr mat) { } void RedundantConstraint::preVelIC() { } void RedundantConstraint::preAccIC() { } void RedundantConstraint::fillAccICIterError(FColDsptr col) { } void RedundantConstraint::setqsuddotlam(FColDsptr col) { } void RedundantConstraint::discontinuityAtaddTypeTo(double t, std::shared_ptr> disconTypes) { //"Reactivate all contraints." assert(false); //| newSelf | //newSelf : = self constraint. //newSelf discontinuityAt : tstartNew addTypeTo : collection. //self become : newSelf }