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

Explicit Instantiation of some Z2i/Z3i classes #1117

Merged
merged 10 commits into from
Jan 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 9 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
- Traits class for containers in order to probe their category at
compile time. (Jacques-Olivier Lachaud,
[#1079](https://github.com/DGtal-team/DGtal/pull/1079))

- Generic set operations for arbitrary containers. You may use
- Generic set operations for arbitrary containers. You may use
overloaded operators like &, |, -, ^ on arbitrary containers (list,
vector, unordered_set, map, etc). (Jacques-Olivier Lachaud,
[#1079](https://github.com/DGtal-team/DGtal/pull/1079))
Expand Down Expand Up @@ -69,6 +68,14 @@


## Changes
- *Configuration*
- Types and classes in helper namespaces ```Z2i``` and ```Z3i``` for
```StdDefs.h``` header (2D and 3D digital geometry with
computations on 32bit integers) are now explicitly instanciated in
the compiled library. This reduces compilation time when such types
are used. (David Coeurjolly,
[#1117](https://github.com/DGtal-team/DGtal/pull/1117))

- *DEC Package*
- DiscreteExteriorCalculus holds both primal and dual sizes of each cell.
Subsequent changes have been made to insertSCell.
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include(DGtal/arithmetic/ModuleSRC.txt)
include(DGtal/kernel/ModuleSRC.txt)
include(DGtal/base/ModuleSRC.txt)
include(DGtal/io/ModuleSRC.txt)
include(DGtal/math/ModuleSRC.txt)
include(DGtal/helpers/ModuleSRC.txt)
## Board dependency
include(Board/ModuleSRC.txt)

Expand Down
1 change: 0 additions & 1 deletion src/DGtal/base/ModuleSRC.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ SET(DGTAL_SRC ${DGTAL_SRC}
DGtal/base/Bits
DGtal/base/Clock
DGtal/base/Trace
DGtal/base/OrderedAlphabet
DGtal/base/Common)

Loading