mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
[apps/probability] Tidy all law models in a folder law/
Change-Id: Ic2713ee57336fc48bfca25c4f94c4bb191894007
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
app_objs += $(addprefix apps/probability/,\
|
||||
app.o\
|
||||
binomial_law.o\
|
||||
calculation.o\
|
||||
calculation_controller.o\
|
||||
cell.o\
|
||||
evaluate_context.o\
|
||||
exponential_law.o\
|
||||
image_table_view.o\
|
||||
law.o\
|
||||
law/binomial_law.o\
|
||||
law/exponential_law.o\
|
||||
law/law.o\
|
||||
law/normal_law.o\
|
||||
law/one_parameter_law.o\
|
||||
law/poisson_law.o\
|
||||
law/two_parameter_law.o\
|
||||
law/uniform_law.o\
|
||||
law_controller.o\
|
||||
law_curve_view.o\
|
||||
normal_law.o\
|
||||
one_parameter_law.o\
|
||||
parameters_controller.o\
|
||||
poisson_law.o\
|
||||
two_parameter_law.o\
|
||||
uniform_law.o\
|
||||
)
|
||||
|
||||
app_images += $(addprefix apps/probability/images/,\
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define PROBABILITE_CALCULATION_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "law.h"
|
||||
#include "law/law.h"
|
||||
|
||||
namespace Probability {
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define PROBABILITY_CALCULATION_CONTROLLER_H
|
||||
|
||||
#include <escher.h>
|
||||
#include "law.h"
|
||||
#include "law/law.h"
|
||||
#include "law_curve_view.h"
|
||||
#include "image_table_view.h"
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_BINOMIAL_LAW_H
|
||||
#define PROBABILITE_BINOMIAL_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "two_parameter_law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_EXPONENTIAL_LAW_H
|
||||
#define PROBABILITE_EXPONENTIAL_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "one_parameter_law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PROBABILITE_LAW_H
|
||||
#define PROBABILITE_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "../evaluate_context.h"
|
||||
|
||||
namespace Probability {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_NORMAL_LAW_H
|
||||
#define PROBABILITE_NORMAL_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "two_parameter_law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_ONE_PARAMETER_LAW_H
|
||||
#define PROBABILITE_ONE_PARAMETER_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_POISSON_LAW_H
|
||||
#define PROBABILITE_POISSON_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "one_parameter_law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_TWO_PARAMETER_LAW_H
|
||||
#define PROBABILITE_TWO_PARAMETER_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,7 +1,6 @@
|
||||
#ifndef PROBABILITE_UNIFORM_LAW_H
|
||||
#define PROBABILITE_UNIFORM_LAW_H
|
||||
|
||||
#include "evaluate_context.h"
|
||||
#include "two_parameter_law.h"
|
||||
|
||||
namespace Probability {
|
||||
@@ -1,11 +1,11 @@
|
||||
#include "law_controller.h"
|
||||
#include <assert.h>
|
||||
#include "app.h"
|
||||
#include "binomial_law.h"
|
||||
#include "exponential_law.h"
|
||||
#include "normal_law.h"
|
||||
#include "poisson_law.h"
|
||||
#include "uniform_law.h"
|
||||
#include "law/binomial_law.h"
|
||||
#include "law/exponential_law.h"
|
||||
#include "law/normal_law.h"
|
||||
#include "law/poisson_law.h"
|
||||
#include "law/uniform_law.h"
|
||||
#include "images/binomial_icon.h"
|
||||
#include "images/exponential_icon.h"
|
||||
#include "images/normal_icon.h"
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <escher.h>
|
||||
#include "cell.h"
|
||||
#include "law.h"
|
||||
#include "law/law.h"
|
||||
#include "parameters_controller.h"
|
||||
#include "evaluate_context.h"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "../curve_view.h"
|
||||
#include "../constant.h"
|
||||
#include "law.h"
|
||||
#include "law/law.h"
|
||||
#include <escher.h>
|
||||
#include <poincare.h>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <escher.h>
|
||||
#include "../float_parameter_controller.h"
|
||||
#include "law.h"
|
||||
#include "law/law.h"
|
||||
#include "calculation_controller.h"
|
||||
|
||||
namespace Probability {
|
||||
|
||||
Reference in New Issue
Block a user