mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[VariableBox] Added sequences to the variable box
It is now possible to call the value of a defined sequence anywhere. Change-Id: I1990e93c50f9add175b7ea274e07004ba63289e5
This commit is contained in:
committed by
Émilie Feral
parent
c006ed7b10
commit
3dca515441
@@ -14,6 +14,7 @@
|
||||
#include "calculation/left_integral_calculation.h"
|
||||
#include "calculation/right_integral_calculation.h"
|
||||
#include "calculation/finite_integral_calculation.h"
|
||||
#include "../shared/shared_app.h"
|
||||
|
||||
constexpr static size_t max(const int * data, int seed = 0) {
|
||||
return (*data == 0 ? seed : max(data+1, *data > seed ? *data : seed));
|
||||
@@ -29,7 +30,7 @@ public:
|
||||
I18n::Message upperName() override;
|
||||
const Image * icon() override;
|
||||
};
|
||||
class Snapshot : public ::App::Snapshot {
|
||||
class Snapshot : public ::SharedApp::Snapshot {
|
||||
public:
|
||||
enum class Page {
|
||||
Distribution,
|
||||
|
||||
Reference in New Issue
Block a user