[apps] Decrease store sizes

Change-Id: I06b9020aeca0000dfd6a9d72e697151330fee6cc
This commit is contained in:
Émilie Feral
2017-04-14 18:31:20 +02:00
parent 024e55abeb
commit 8957734f92
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ public:
void resetColumn(int i);
float sumOfColumn(int i);
uint32_t storeChecksum();
constexpr static int k_maxNumberOfPairs = 500;
constexpr static int k_maxNumberOfPairs = 100;
protected:
virtual float defaultValue(int ii);
int m_numberOfPairs;

View File

@@ -19,7 +19,7 @@ public:
void setStep(float f);
void setElement(int i, float f);
// TODO: decide the max number of elements after optimization
constexpr static int k_maxNumberOfElements = 500;
constexpr static int k_maxNumberOfElements = 100;
private:
void computeElements();
int m_numberOfElements;