mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
84 lines
2.6 KiB
C++
84 lines
2.6 KiB
C++
#include <poincare/ceiling.h>
|
|
#include <poincare/ceiling_layout.h>
|
|
#include <poincare/serialization_helper.h>
|
|
#include <poincare/simplification_helper.h>
|
|
#include <poincare/symbol.h>
|
|
#include <poincare/rational.h>
|
|
#include <cmath>
|
|
#include <ion.h>
|
|
#include <assert.h>
|
|
|
|
namespace Poincare {
|
|
|
|
Layout CeilingNode::createLayout(Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits) const {
|
|
return CeilingLayout(childAtIndex(0)->createLayout(floatDisplayMode, numberOfSignificantDigits));
|
|
}
|
|
|
|
int CeilingNode::serialize(char * buffer, int bufferSize, Preferences::PrintFloatMode floatDisplayMode, int numberOfSignificantDigits) const {
|
|
return SerializationHelper::Prefix(this, buffer, bufferSize, floatDisplayMode, numberOfSignificantDigits, name());
|
|
}
|
|
|
|
template<typename T>
|
|
Complex<T> CeilingNode::computeOnComplex(const std::complex<T> c, Preferences::AngleUnit angleUnit) {
|
|
if (c.imag() != 0) {
|
|
return Complex<T>::Undefined();
|
|
}
|
|
return Complex<T>(std::ceil(c.real()));
|
|
}
|
|
|
|
Expression CeilingNode::shallowReduce(Context & context, Preferences::AngleUnit angleUnit) {
|
|
return Ceiling(this).shallowReduce(context, angleUnit);
|
|
}
|
|
|
|
Ceiling::Ceiling() : Expression(TreePool::sharedPool()->createTreeNode<CeilingNode>()) {}
|
|
|
|
Expression Ceiling::shallowReduce(Context & context, Preferences::AngleUnit angleUnit) {
|
|
{
|
|
Expression e = Expression::defaultShallowReduce(context, angleUnit);
|
|
if (e.isUndefined()) {
|
|
return e;
|
|
}
|
|
}
|
|
Expression c = childAtIndex(0);
|
|
#if MATRIX_EXACT_REDUCING
|
|
if (c.type() == ExpressionNode::Type::Matrix) {
|
|
return SimplificationHelper::Map(*this, context, angleUnit);
|
|
}
|
|
#endif
|
|
if (c.type() == ExpressionNode::Type::Symbol) {
|
|
Symbol s = static_cast<Symbol&>(c);
|
|
Expression result;
|
|
if (s.name() == Ion::Charset::SmallPi) {
|
|
result = Rational(4);
|
|
}
|
|
if (s.name() == Ion::Charset::Exponential) {
|
|
result = Rational(3);
|
|
}
|
|
if (!result.isUninitialized()) {
|
|
replaceWithInPlace(result);
|
|
return result;
|
|
}
|
|
return *this;
|
|
}
|
|
if (c.type() != ExpressionNode::Type::Rational) {
|
|
return *this;
|
|
}
|
|
Rational r = c.convert<Rational>();
|
|
IntegerDivision div = Integer::Division(r.signedIntegerNumerator(), r.integerDenominator());
|
|
assert(!div.remainder.isInfinity());
|
|
if (div.remainder.isZero()) {
|
|
Expression result = Rational(div.quotient);
|
|
replaceWithInPlace(result);
|
|
return result;
|
|
}
|
|
Integer result = Integer::Addition(div.quotient, Integer(1));
|
|
if (result.isInfinity()) {
|
|
return *this;
|
|
}
|
|
Expression rationalResult = Rational(result);
|
|
replaceWithInPlace(rationalResult);
|
|
return rationalResult;
|
|
}
|
|
|
|
}
|