Adam Wulkiewicz
8e4bc68ed5
[index] Rename "static" nodes to "variant" nodes (it is more clear).
2014-10-05 16:19:18 +02:00
Adam Wulkiewicz
9d7ed2962e
[index] Remove polymorphic nodes. Add the implementation of weak nodes, not included/used yet.
...
The rationale to remove polymorphic nodes:
1. such nodes can't work properly if stored in shared memory due to the way how addresses are calculated (using offsets).
2. the rtree using Variant-based nodes has similar performance and takes less memory.
3. the rtree using newly added weak_nodes (not supported/enabled yet) will be even faster and smaller.
This is the first step to entirely drop the support for polymorphic nodes. After this it should be not needed to explicitly specify the Nodes types in visitors, therefore it should be possible to dispatch the nodes types statically more conveniently, simplify templates by removal of unneeded parameters, write simpler and more maintainable code, etc.
2014-10-05 15:36:50 +02:00
Adam Wulkiewicz
22bd0ea747
[test][index] Change throwing nodes from polymorphic to variant-based.
2014-10-05 14:40:43 +02:00
Adam Wulkiewicz
5531315d98
[index] Move elements-access-related code to separate file, not mixing it with nodes definition.
2014-10-05 12:29:28 +02:00
Adam Wulkiewicz
0db47437f2
[index] Replace levels type size_t with size_types in R*-tree insert visitor.
2014-10-04 01:40:40 +02:00
Adam Wulkiewicz
3069084c15
[index] Replace levels type size_t with size_types in rtree insert visitor.
2014-10-04 01:29:04 +02:00
Adam Wulkiewicz
1f1f663a12
[index] Replace size_t with proper size_types in rtree remove visitor.
2014-10-04 00:59:06 +02:00
Adam Wulkiewicz
6b8aeabbdf
[index] Cosmetic changes.
...
Remove unneeded typedefs in nodes.
Change the order of template parameters in bgidr::get(dynamic_node<>&)
2014-10-04 00:06:21 +02:00
Adam Wulkiewicz
fa7cd296d3
[index] Refactor count rtree visitor.
...
Remove specialization of count visitor for value_type, don't duplicate the same algorithm in 2 places.
Move Value/Indexable-aware parts into smaller helper struct and specialize it.
2014-10-02 23:40:53 +02:00
Adam Wulkiewicz
a9ac57dc8f
[index] Support objects of type convertible to value_type in rtree::count().
2014-10-02 23:37:32 +02:00
Adam Wulkiewicz
d331bf262a
[index] Tweak type, variable names and description of member and free rtree insert() and remove() functions.
2014-10-02 21:44:18 +02:00
Adam Wulkiewicz
d32066530c
[index] Support objects of type convertible to value_type in insert() and remove().
...
In previous implementation such objects was falling into the overload taking Range.
2014-10-02 21:22:32 +02:00
Adam Wulkiewicz
ff98b648ee
[index] Update copyrights info.
2014-10-02 21:22:11 +02:00
Adam Wulkiewicz
3abe3e0b79
Merge branch 'develop' of github.com:boostorg/geometry into develop
2014-10-02 20:08:19 +02:00
Adam Wulkiewicz
eabb17b7e4
[index] Replace uses of traits:xxx with geometry::xxx metafunctions.
2014-10-02 20:06:02 +02:00
Adam Wulkiewicz
b2dfd7f0c8
[index] Use default Dimension templ. params in content() and margin() algorithms.
...
Replace traits::dimension<> with geometry::dimension<>.
2014-10-02 19:57:20 +02:00
Adam Wulkiewicz
e6331558a5
Merge pull request #150 from mkaravel/fix/for_each-alternate
...
[algorithms][for_each] Alternative fix
2014-10-02 12:33:47 +02:00
Adam Wulkiewicz
add58fec8c
[iterators] Fix the description of closing_iterator<>.
2014-10-01 16:58:29 +02:00
Adam Wulkiewicz
39802e7923
[core] Add MPL_ASSERT for coordinate dimension > 0
2014-10-01 16:49:49 +02:00
Adam Wulkiewicz
1e968c3590
[index] Add default template parameters in the implementation of is_valid. Remove MPL assert
2014-10-01 16:28:15 +02:00
Barend Gehrels
cfb66e85b3
[debug] extend operator<< of segment_ratio, now displaying the real value too
2014-10-01 10:24:21 +02:00
Barend Gehrels
5d93d7a116
[debug] fix operator<< of segment_identifier, now using os
2014-10-01 10:23:39 +02:00
Menelaos Karavelas
6e52b356e7
[algorithms][for_each] fix bug in for_each_segment for open geometries
...
without using the closeable_view (so that mutable geometries can also
be supported)
2014-10-01 09:26:46 +03:00
Adam Wulkiewicz
f1ec0715ee
Merge pull request #147 from mkaravel/fix/for_each
...
[algorithms][for_each] fix bug with for_each_segment for open geometries
2014-09-30 17:53:51 +02:00
Menelaos Karavelas
ac32f9dd58
[algorithms][for_each] fix bug with for_each_segment for open geometries:
...
for_each_segment was not considering the last implicit segment of open
geometries; the patch fixes this;
2014-09-30 17:08:15 +03:00
Menelaos Karavelas
f3ee1dedcd
[algorithms][distance] qualify point_iterator by geometry namespace
...
(needed because of the changes in the point_iterator class, namely
the introduction of the bg::detail::point_iterator namespace)
2014-09-30 17:04:34 +03:00
Menelaos Karavelas
fb35d9db7a
[iterators][segment_iterator] update segment_iterator implementation
...
following the changes in the point_iterator implementation design
and file/directory layout
2014-09-30 15:04:10 +03:00
Menelaos Karavelas
60f184e3ce
[iterators][point_iterator] change file/directory structure for
...
point iterator; use detail::point_iterator namespace for the
implementation details of the point iterator;
2014-09-30 15:02:20 +03:00
Menelaos Karavelas
b9c496a1d8
[iterators][point_reverse_iterator] mark methods and constructors as inline
2014-09-30 15:00:42 +03:00
Adam Wulkiewicz
f76671507a
Merge pull request #141 from mkaravel/feature/segment_iterator
...
Feature/segment iterator
2014-09-30 12:45:57 +02:00
Menelaos Karavelas
10ce79898a
[iterators][segment_iterator] update implementation of segment_iterator
...
due to the change of namespace and name of the segment_iterator_type class;
make constructors of bg::segment_iterator class inline; change the return type
of segments_begin and segments_end to be segment_iterator<Geometry const>;
2014-09-30 09:50:47 +03:00
Menelaos Karavelas
404ca1cbe6
[iterators][segment_iterator] move implementation of bg::segment_iterator_type
...
to bg::detail::segment_iterator namespace; rename the class segment_iterator_type
to iterator_type;
2014-09-30 09:49:26 +03:00
Menelaos Karavelas
029cb92952
[iterators][segment_iterator] fix file-inclusion guarding macro to
...
reflect true file path
2014-09-29 17:15:23 +03:00
Menelaos Karavelas
67e418e705
[iterators][segment_iterator] move range_segment_iterator class to
...
detail::segment_iterator namespace; move bg::segment_iterator_value_type
to bg::detail::segment_iterator::value_type;
2014-09-29 17:10:24 +03:00
Menelaos Karavelas
2a0dceece9
[iterators][segment_iterator] correct comments; fix code length to be
...
at most 80 characters;
2014-09-29 17:06:41 +03:00
Menelaos Karavelas
84b54af205
[iterators][segment_iterator] correct comments
2014-09-29 17:05:35 +03:00
Menelaos Karavelas
bffac4a108
[geometries][pointing_segment] initialize member variables in
...
default constructor with NULL; in get/set access methods check
that the pointers of the segment are not NULL (via assertion);
remove copy constructor and assignment operator: they are the
same as those the compiler would produce automatically;
2014-09-27 14:04:35 +03:00
Menelaos Karavelas
6388a43089
[iterators][segment_iterator] change the value type of the segment iterator
...
from referring_segment to pointing_segment
2014-09-26 11:41:20 +03:00
Menelaos Karavelas
8fc8bd9773
[geometries][pointing_segment] introduce a new segment class called
...
pointing segment; this segment is default constructible, copy constructible
and assignable; it stores pointers to points instead of the points themselves
(for efficiency); this segment class is meant to be the value type of the
segment iterator;
2014-09-26 10:07:20 +03:00
Menelaos Karavelas
039f8f7a48
[algorithms][turns] add missing include that causes compilation error
...
when -DBOOST_GEOMETRY_TEST_DEBUG is defined, and re-arrange order of includes
2014-09-26 09:44:21 +03:00
Menelaos Karavelas
d2be8d47a3
[iterators][segment_iterator] add implementation for the segment_iterator
...
class, as well as for the free functions segments_begin and segments_end
2014-09-24 08:49:19 +03:00
Menelaos Karavelas
6dea5fca84
[iterators][segment_iterator] add implementation for the underlying
...
segment_iterator type
2014-09-24 08:48:43 +03:00
Menelaos Karavelas
3739d79140
[iterators][segment_iterator] add implementation for an iterator over
...
the segments of a range
2014-09-24 08:48:09 +03:00
Menelaos Karavelas
e9aee61734
[iterators][segment_iterator] add basic dispatch definitions for the
...
segment_iterator and segment_iterator_type classes
2014-09-24 08:45:02 +03:00
Menelaos Karavelas
73ec339f7b
[iterators][concatenate_iterator] add one more template parameter for
...
the reference type (previously it was defaulted to Value&)
2014-09-24 08:43:21 +03:00
Menelaos Karavelas
49af3c4c87
[iterators][flatten_iterator] add one more template parameter for the
...
reference type (previously it was defaulted to Value&)
2014-09-24 08:41:42 +03:00
Menelaos Karavelas
6c6c31d1b2
[iterators][point_iterator] add missing include for interior_type
2014-09-24 08:39:45 +03:00
Patrick J. LoPresti
ff24c271a7
[core] Fix signed/unsigned comparison warnings
2014-09-22 14:13:14 -07:00
Adam Wulkiewicz
0f23d2317a
[index] Fix signed/unsigned comparison in is_valid (MPL_ASSERT).
2014-09-22 00:30:08 +02:00
Barend Gehrels
8643a35da3
Merge branch 'develop' into feature/buffer
2014-09-17 16:33:32 +02:00