Blame view

Giac_maj/epsilon-giac/apps/sequence/local_context.h 709 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  #ifndef SEQUENCE_LOCAL_CONTEXT_H
  #define SEQUENCE_LOCAL_CONTEXT_H
  
  #include <poincare.h>
  #include "sequence_store.h"
  
  namespace Sequence {
  
  template<typename T>
  class LocalContext : public Poincare::VariableContext<T> {
  public:
    LocalContext(Poincare::Context * parentContext);
    const Poincare::Expression * expressionForSymbol(const Poincare::Symbol * symbol) override;
    void setValueForSequenceRank(T value, const char * sequenceName, int rank);
  private:
    constexpr static int k_depth = 2;
    int nameIndexForSymbol(const Poincare::Symbol * symbol);
    int rankIndexForSymbol(const Poincare::Symbol * symbol);
    Poincare::Complex<T> m_values[SequenceStore::k_maxNumberOfSequences][k_depth];
  };
  
  }
  
  #endif