mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
26 lines
526 B
C++
26 lines
526 B
C++
#ifndef SOLVER_EQUATION_h
|
|
#define SOLVER_EQUATION_h
|
|
|
|
#include "../shared/expression_model.h"
|
|
|
|
namespace Solver {
|
|
|
|
class Equation : public Shared::ExpressionModel {
|
|
public:
|
|
Equation();
|
|
void setContent(const char * c) override;
|
|
void tidy() override;
|
|
bool shouldBeClearedBeforeRemove() override {
|
|
return false;
|
|
}
|
|
Poincare::Expression standardForm(Poincare::Context * context) const;
|
|
bool containsIComplex() const;
|
|
private:
|
|
void tidyStandardForm();
|
|
mutable Poincare::Expression m_standardForm;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|