mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
This allows sequences to be used in functions by calling u(x) Change-Id: I336e84a19bf9b3dd0f2e435d1aaebda3c9e71ec8
18 lines
447 B
C++
18 lines
447 B
C++
#ifndef REGRESSION_REGRESSION_CONTEXT_H
|
|
#define REGRESSION_REGRESSION_CONTEXT_H
|
|
|
|
#include <poincare/context.h>
|
|
#include "../shared/store_context.h"
|
|
|
|
namespace Regression {
|
|
|
|
class RegressionContext : public Shared::StoreContext {
|
|
public:
|
|
using Shared::StoreContext::StoreContext;
|
|
const Poincare::Expression expressionForSymbolAbstract(const Poincare::SymbolAbstract & symbol, bool clone, float unknownSymbolValue = NAN) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|