Skip to content

Commit 52f3de8

Browse files
committed
new directory 'reasoning'
1 parent 5282dd8 commit 52f3de8

File tree

15 files changed

+13
-14
lines changed

15 files changed

+13
-14
lines changed

src/commands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "commands.h"
2020
#include "gui/mainscene.h"
21-
#include "state.h"
21+
#include "reasoning/state.h"
2222

2323
#include <QDebug>
2424
#include <QGraphicsItem>

src/greasepad.pro

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ contains(QMAKE_CC, gcc) {
2626

2727

2828
SOURCES += \
29-
adjustment.cpp \
3029
commands.cpp \
31-
constraints.cpp \
3230
graphics/qconstraints.cpp \
3331
graphics/qsegment.cpp \
3432
graphics/qstroke.cpp \
@@ -38,18 +36,17 @@ SOURCES += \
3836
gui/qformattool.cpp \
3937
main.cpp \
4038
matrix.cpp \
41-
state.cpp \
39+
reasoning/adjustment.cpp \
40+
reasoning/constraints.cpp \
41+
reasoning/state.cpp \
4242
uncertain/quncertain.cpp \
4343
uncertain/upoint.cpp \
4444
uncertain/usegment.cpp \
4545
uncertain/ustraightline.cpp
4646

4747
HEADERS += \
48-
adjustment.h \
4948
commands.h \
5049
conncomp.h \
51-
constants.h \
52-
constraints.h \
5350
find.h \
5451
geometry/aabb.h \
5552
geometry/acute.h \
@@ -64,12 +61,14 @@ HEADERS += \
6461
gui/mainview.h \
6562
gui/mainwindow.h \
6663
gui/qformattool.h \
67-
kernel.h \
6864
matfun.h \
6965
matrix.h \
70-
quantiles.h \
71-
state.h \
72-
statistics.h \
66+
reasoning/adjustment.h \
67+
reasoning/constants.h \
68+
reasoning/constraints.h \
69+
reasoning/kernel.h \
70+
reasoning/quantiles.h \
71+
reasoning/state.h \
7372
statistics/chisquared.h \
7473
statistics/exponential.h \
7574
statistics/gamma.h \

src/gui/mainscene.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "mainscene.h"
2020
#include "qtypes.h"
21-
#include "state.h"
21+
#include "reasoning/state.h"
2222

2323
#include <QAction>
2424
#include <QApplication>

src/gui/mainwindow.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <memory>
2828

29-
#include "state.h"
29+
#include "reasoning/state.h"
3030

3131

3232
class MainScene;

0 commit comments

Comments
 (0)