Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring polytopes #82

Merged
merged 62 commits into from
Sep 29, 2020
Merged
Changes from 1 commit
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
6315ee2
Merge pull request #1 from GeomScale/develop
elias-tsigaridas May 22, 2020
5b6f62e
Eliminating "init" and refactoring of the constructors
May 22, 2020
e263f40
Eliminating "init" and refactoring of the constructors
May 22, 2020
6b457ac
Eliminating "init" and refactoring of the constructors
May 23, 2020
a0e1d15
Eliminating "init" and refactoring of the constructors
May 23, 2020
cff8c1b
Add implementation for the Big3
May 24, 2020
42f29ea
Eliminate init
May 24, 2020
d0069eb
Eliminate init
May 24, 2020
1571f0d
Adjust headers
May 24, 2020
81f8bb5
Eliminate init from Hpolytope
May 24, 2020
c917d0a
modifs
May 24, 2020
c72cb76
Eliminate calls to Hpolytope.init
May 24, 2020
9059699
Eliminate calls to HPolytope.init
May 24, 2020
2778a64
Eliminate calls to Hpolytope.init
May 24, 2020
4dc1d89
Eliminte free_them_all function call
May 24, 2020
eae23a9
Adjust headers
May 24, 2020
43e1af9
Adjust headers and eliminate calls to Hpolytope.init
May 24, 2020
ffc1af0
adjust headers
May 24, 2020
a9663db
Adjust headers and eliminate calls to VPolytope.init
May 25, 2020
fd202a4
minor modifs
May 25, 2020
8d7dea6
Merge branch 'develop' into Refactoring_polytopes
elias-tsigaridas May 26, 2020
5b404b9
fix c++ tests
TolisChal May 30, 2020
b8ba74f
Merge pull request #2 from TolisChal/Refactoring_polytopes
elias-tsigaridas Jun 1, 2020
934d80d
mofis
Jun 1, 2020
2dfd720
Merge branch 'develop' into Refactoring_polytopes
elias-tsigaridas Jun 5, 2020
1b64bc2
Merge branch 'Refactoring_polytopes' of https://github.com/elias-tsig…
TolisChal Jul 1, 2020
66fc0be
fix R tests and improve c++ polytope generators
TolisChal Jul 2, 2020
85e0e87
fix c++ tests
TolisChal Jul 2, 2020
7627343
fix R checks
TolisChal Jul 3, 2020
19e3f1f
fix errors in R interface and cros polytope generator
TolisChal Jul 3, 2020
5717a8e
fix R tests
TolisChal Jul 3, 2020
a2b9be2
fix warning in R tests
TolisChal Jul 5, 2020
2bbb5e0
fix warnings in h- and v-polytope constructors
TolisChal Jul 5, 2020
6bb2247
Merge pull request #3 from TolisChal/refactoring
elias-tsigaridas Jul 8, 2020
87672aa
Polishing according to the review in the PR.
Jul 23, 2020
bdf97a0
Polishing according to the review in the PR.
Jul 23, 2020
d6be66f
Polishing according to the review in the PR.
Jul 23, 2020
1fcce0a
Polishing according to the review in the PR.
Jul 23, 2020
4074a99
modifs
Jul 23, 2020
ddbb902
modifs
Sep 13, 2020
8fadc0c
remove CMakeLists.txt from the root directory
Sep 13, 2020
92b2485
modifs
Sep 27, 2020
c0e5d14
modifs to finalize the PR
Sep 27, 2020
214888a
modifs
Sep 27, 2020
de8a023
fix conflicts
TolisChal Sep 27, 2020
86b6703
Merge pull request #4 from TolisChal/code_refactoring
elias-tsigaridas Sep 27, 2020
70e7927
eliminate init from Polytopes
Sep 27, 2020
3ad4285
Merge branch 'Refactoring_polytopes' of https://github.com/elias-tsig…
Sep 27, 2020
a68b02f
fix bugs on zonotope destructor
TolisChal Sep 27, 2020
ea42dd7
remove chebychev ball computation from the constructor
TolisChal Sep 27, 2020
1688f8a
Merge pull request #5 from TolisChal/code_refactoring
elias-tsigaridas Sep 27, 2020
39ff2b4
modifs
Sep 27, 2020
16af90d
change the default error
Sep 27, 2020
80b2576
fix warnings in R tests
TolisChal Sep 27, 2020
0d71223
Merge pull request #6 from TolisChal/code_refactoring
elias-tsigaridas Sep 27, 2020
536a4ff
modifs
Sep 27, 2020
28c1fd3
change order of initialization
Sep 27, 2020
34b8842
improve c++ tests
TolisChal Sep 27, 2020
4c17531
Merge pull request #7 from TolisChal/code_refactoring
elias-tsigaridas Sep 28, 2020
c563825
improve c++ tests
TolisChal Sep 28, 2020
42f26a1
Merge pull request #8 from TolisChal/code_refactoring
elias-tsigaridas Sep 28, 2020
7d4e183
removed comments
Sep 28, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Eliminate init
TSIGARIDAS Elias committed May 24, 2020
commit 42f29ea3a8d1c098f3172753e36146e0c5270dab
5 changes: 1 addition & 4 deletions include/generators/h_polytopes_generator.h
Original file line number Diff line number Diff line change
@@ -47,10 +47,7 @@ Polytope random_hpoly(unsigned int dim, unsigned int m, double seed = std::numer
b(i) = 10.0;
}

Polytope HP;
HP.init(dim, A, b);

return HP;
return Polytope(dim, A, b);
}

#endif