Files
Upsilon/poincare/src/matrix_echelon_form.cpp
2020-11-04 15:58:41 +01:00

60 lines
2.1 KiB
C++

#include <poincare/matrix_echelon_form.h>
#include <poincare/matrix_complex.h>
#include <poincare/layout_helper.h>
#include <poincare/matrix.h>
#include <poincare/serialization_helper.h>
namespace Poincare {
int MatrixEchelonFormNode::numberOfChildren() const { return sNumberOfChildren; }
Expression MatrixEchelonFormNode::shallowReduce(ReductionContext reductionContext) {
return MatrixEchelonForm(this).shallowReduce(reductionContext);
}
Layout MatrixEchelonFormNode::createLayout(Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits) const {
return LayoutHelper::Prefix(MatrixEchelonForm(this), floatDisplayMode, numberOfSignificantDigits, functionHelperName());
}
int MatrixEchelonFormNode::serialize(char * buffer, int bufferSize, Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits) const {
return SerializationHelper::Prefix(this, buffer, bufferSize, floatDisplayMode, numberOfSignificantDigits, functionHelperName());
}
template<typename T>
Evaluation<T> MatrixEchelonFormNode::templatedApproximate(ApproximationContext approximationContext) const {
Evaluation<T> input = childAtIndex(0)->approximate(T(), approximationContext);
Evaluation<T> ref;
if (input.type() == EvaluationNode<T>::Type::MatrixComplex) {
ref = static_cast<MatrixComplex<T>&>(input).ref(isFormReduced());
} else {
ref = Complex<T>::Undefined();
}
assert(!ref.isUninitialized());
return ref;
}
Expression MatrixEchelonForm::shallowReduce(ExpressionNode::ReductionContext reductionContext) {
{
Expression e = Expression::defaultShallowReduce();
e = e.defaultHandleUnitsInChildren();
if (e.isUndefined()) {
return e;
}
}
Expression c = childAtIndex(0);
if (c.type() == ExpressionNode::Type::Matrix) {
bool couldComputeRef = false;
Expression result = static_cast<Matrix&>(c).createRef(reductionContext, &couldComputeRef, isFormReduced());
if (couldComputeRef) {
replaceWithInPlace(result);
return result;
}
// The matrix could not be transformed properly
return *this;
}
return replaceWithUndefinedInPlace();
}
}