Numworks Epsilon  1.4.1
Graphing Calculator Operating System
nth_root.h
Go to the documentation of this file.
1 #ifndef POINCARE_NTH_ROOT_H
2 #define POINCARE_NTH_ROOT_H
3 
6 #include <poincare/complex.h>
7 
8 namespace Poincare {
9 
10 class NthRoot : public StaticHierarchy<2> {
12 public:
13  Type type() const override;
14  Expression * clone() const override;
15 private:
16  /* Layout */
17  ExpressionLayout * privateCreateLayout(PrintFloat::Mode floatDisplayMode, ComplexFormat complexFormat) const override;
18  int writeTextInBuffer(char * buffer, int bufferSize, int numberOfSignificantDigits = PrintFloat::k_numberOfStoredSignificantDigits) const override {
19  return LayoutEngine::writePrefixExpressionTextInBuffer(this, buffer, bufferSize, numberOfSignificantDigits, "root");
20  }
21  /* Simplification */
22  Expression * shallowReduce(Context& context, AngleUnit angleUnit) override;
23  /* Evaluation */
24  template<typename T> static Complex<T> compute(const Complex<T> c, const Complex<T> d);
25  Expression * privateApproximate(SinglePrecision p, Context& context, AngleUnit angleUnit) const override { return templatedApproximate<float>(context, angleUnit); }
26  Expression * privateApproximate(DoublePrecision p, Context& context, AngleUnit angleUnit) const override { return templatedApproximate<double>(context, angleUnit); }
27  template<typename T> Expression * templatedApproximate(Context& context, AngleUnit angleUnit) const;
28 
29 };
30 
31 }
32 
33 #endif
Type type() const override
Definition: nth_root.cpp:15
c(generic_all_nodes)
Expression * clone() const override
Definition: nth_root.cpp:19
static int writePrefixExpressionTextInBuffer(const Expression *expression, char *buffer, int bufferSize, int numberOfDigits, const char *operatorName)