mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
24 lines
638 B
C++
24 lines
638 B
C++
#ifndef SEQUENCE_CACHE_CONTEXT_H
|
|
#define SEQUENCE_CACHE_CONTEXT_H
|
|
|
|
#include <poincare.h>
|
|
#include "sequence_context.h"
|
|
|
|
namespace Sequence {
|
|
|
|
template<typename T>
|
|
class CacheContext : public Poincare::VariableContext<T> {
|
|
public:
|
|
CacheContext(Poincare::Context * parentContext);
|
|
const Poincare::Expression expressionForSymbol(const Poincare::Symbol & symbol) override;
|
|
void setValueForSymbol(T value, const Poincare::Symbol & symbol);
|
|
private:
|
|
int nameIndexForSymbol(const Poincare::Symbol & symbol);
|
|
int rankIndexForSymbol(const Poincare::Symbol & symbol);
|
|
T m_values[MaxNumberOfSequences][MaxRecurrenceDepth];
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|