spatial-commit Mailing List for Spatial C++ Library (Page 6)
Library of generic, k-d tree multi-dimensional containers
Brought to you by:
bouhdevel
You can subscribe to this list here.
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(3) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
(5) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
(19) |
Nov
(18) |
Dec
(2) |
2013 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
(11) |
Aug
|
Sep
|
Oct
(2) |
Nov
(9) |
Dec
(1) |
2014 |
Jan
(1) |
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(2) |
Dec
(1) |
2015 |
Jan
|
Feb
(7) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(7) |
Dec
(17) |
2016 |
Jan
(4) |
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Sylvain B. <bou...@us...> - 2012-10-01 19:15:18
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via f9ee0ad36ede5a1a8262002beee0fe7bf70dabc6 (commit) from 32c7277dc622bd5948d1b480750aa86852646b93 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f9ee0ad36ede5a1a8262002beee0fe7bf70dabc6 Author: Sylvain Bougerel <syl...@gm...> Date: Tue Oct 2 03:13:11 2012 +0800 New implementation to protect the contness of the Key parameter. The new implementation does not surcharge template definition as much as the old one and might be more friendly to Visual-C++. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_details.hpp | 26 +++- src/bits/spatial_exceptions.hpp | 2 +- src/bits/spatial_kdtree.hpp | 54 +++---- src/bits/spatial_kdtree.tpp | 15 ++- src/bits/spatial_mapping.hpp | 77 +++------ src/bits/spatial_neighbor.hpp | 32 ++--- src/bits/spatial_node.hpp | 188 ++++++++++++++++------ src/bits/spatial_node.tpp | 2 +- src/bits/spatial_region.hpp | 31 ++--- src/bits/spatial_relaxed_kdtree.hpp | 52 +++---- src/bits/spatial_relaxed_kdtree.tpp | 9 +- src/boxmap.hpp | 28 ++-- src/boxset.hpp | 22 ++-- src/frozen_pointset.hpp | 183 --------------------- src/{frozen_boxmap.hpp => idle_boxmap.hpp} | 110 +++++++------ src/{frozen_boxset.hpp => idle_boxset.hpp} | 110 +++++++------ src/{frozen_pointmap.hpp => idle_pointmap.hpp} | 108 ++++++------ src/idle_pointset.hpp | 185 +++++++++++++++++++++ src/pointmap.hpp | 16 +- src/pointset.hpp | 28 ++-- tests/bits/spatial_test_fixtures.hpp | 208 ++++++++++++------------ tests/bits/spatial_test_mapping.hpp | 4 +- tests/bits/spatial_test_node.hpp | 58 ++++---- tests/bits/spatial_test_output.hpp | 137 ++++++++++++++++ tests/bits/spatial_test_traits.hpp | 2 +- tests/verify.cpp | 9 +- 26 files changed, 954 insertions(+), 742 deletions(-) delete mode 100644 src/frozen_pointset.hpp rename src/{frozen_boxmap.hpp => idle_boxmap.hpp} (51%) rename src/{frozen_boxset.hpp => idle_boxset.hpp} (51%) rename src/{frozen_pointmap.hpp => idle_pointmap.hpp} (54%) create mode 100644 src/idle_pointset.hpp create mode 100644 tests/bits/spatial_test_output.hpp hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-10-01 12:54:31
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 32c7277dc622bd5948d1b480750aa86852646b93 (commit) from 73ddd2342f12ef51d349a67b2851b1fb084f7b41 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 32c7277dc622bd5948d1b480750aa86852646b93 Author: Sylvain Bougerel <syl...@gm...> Date: Mon Oct 1 20:54:35 2012 +0800 SB: Added some fixes for Visual Studio C++2010 ----------------------------------------------------------------------- Summary of changes: tests/bits/spatial_test_exceptions.hpp | 8 +++--- tests/bits/spatial_test_fixtures.hpp | 3 -- tests/bits/spatial_test_node.hpp | 41 ++++++++++++++++++++----------- tests/verify.cpp | 1 + 4 files changed, 31 insertions(+), 22 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-09-28 17:05:36
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 73ddd2342f12ef51d349a67b2851b1fb084f7b41 (commit) from 3d4357687d567ed3c7438ba431617091e687fa08 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 73ddd2342f12ef51d349a67b2851b1fb084f7b41 Author: Sylvain Bougerel <syl...@gm...> Date: Sat Sep 29 01:03:00 2012 +0800 Changing strategy to implement unit test. New strategy is more efficient. Boxes have been added to unit test (I don't know why I forget them before). Also a new node_pointer schema could come up that would simplify the const deduction for key. ----------------------------------------------------------------------- Summary of changes: doc/Doxyfile | 3 +- doc/meta/{complexity.hpp => complexity.dox} | 0 doc/meta/{concepts.hpp => concepts.dox} | 12 +- doc/meta/{main.hpp => main.dox} | 15 +- src/bits/spatial_kdtree.hpp | 12 +- src/bits/spatial_kdtree.tpp | 11 +- src/bits/spatial_mapping.hpp | 32 +- src/bits/spatial_node.hpp | 92 ++++- src/bits/spatial_relaxed_kdtree.hpp | 11 +- src/bits/spatial_relaxed_kdtree.tpp | 45 ++-- tests/bits/spatial_test_fixtures.hpp | 494 ++++++++++++++++++++------- tests/bits/spatial_test_mapping.hpp | 63 ++-- tests/bits/spatial_test_node.hpp | 88 +++--- tests/bits/spatial_test_types.hpp | 106 ++---- 14 files changed, 606 insertions(+), 378 deletions(-) rename doc/meta/{complexity.hpp => complexity.dox} (100%) rename doc/meta/{concepts.hpp => concepts.dox} (98%) rename doc/meta/{main.hpp => main.dox} (98%) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-09-24 17:21:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 3d4357687d567ed3c7438ba431617091e687fa08 (commit) from 57311e13edb5a9075daf6f9e39ee7f5f69108d84 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3d4357687d567ed3c7438ba431617091e687fa08 Author: Sylvain Bougerel <syl...@gm...> Date: Tue Sep 25 01:18:46 2012 +0800 Adding further information into the TODO. Additionally, continue porting mapping tests. It should be do-able to finish it quickly: tests on rel-kdtrees are completely redundant now and can be deleted. ----------------------------------------------------------------------- Summary of changes: TODO | 31 +- src/bits/spatial_mapping.hpp | 24 ++ tests/bits/spatial_test_fixtures.hpp | 32 ++- tests/bits/spatial_test_mapping.hpp | 559 +++++++++------------------------- 4 files changed, 223 insertions(+), 423 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-09-23 15:57:05
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 57311e13edb5a9075daf6f9e39ee7f5f69108d84 (commit) from 60f9535c56ac26d1807f1caf01183656abc9a51f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 57311e13edb5a9075daf6f9e39ee7f5f69108d84 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Sep 23 23:55:31 2012 +0800 Addition of a new gorgeous logo and update of various maintenance files. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 9 ++++++++- TODO | 16 ++++++++++++++++ doc/Doxyfile | 2 +- doc/images/logo.png | Bin 0 -> 2848 bytes 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 doc/images/logo.png hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-09-23 15:23:18
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 60f9535c56ac26d1807f1caf01183656abc9a51f (commit) from 7c9d0db13cb8bbf66c3eda925ad337a3b8ac56da (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 60f9535c56ac26d1807f1caf01183656abc9a51f Author: Sylvain Bougerel <syl...@gm...> Date: Sun Sep 23 23:20:22 2012 +0800 Adding few changes for TEMPLATE test case support which should test all the various types of trees at once in several methods. Better testing. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_function.hpp | 56 ++++--- src/bits/spatial_mapping.hpp | 8 - tests/bits/spatial_test_fixtures.hpp | 70 +++++++- tests/bits/spatial_test_function.hpp | 44 +++++ tests/bits/spatial_test_mapping.hpp | 303 +++++++++------------------------- tests/bits/spatial_test_types.hpp | 28 +++- 6 files changed, 239 insertions(+), 270 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-05-01 14:40:26
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 7c9d0db13cb8bbf66c3eda925ad337a3b8ac56da (commit) from fcd3af8dd76d856ba4fd2accc62a8f15166f0e0b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7c9d0db13cb8bbf66c3eda925ad337a3b8ac56da Author: Sylvain Bougerel <syl...@gm...> Date: Tue May 1 22:33:05 2012 +0800 Need to synchronize my repository. 30 unit test (out of 107) already pass. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_kdtree.hpp | 2 +- src/bits/spatial_kdtree.tpp | 2 +- src/bits/spatial_mapping.hpp | 102 ++++++------ src/bits/spatial_mapping.tpp | 66 ++++---- src/bits/spatial_relaxed_kdtree.tpp | 2 +- tests/bits/spatial_test_fixtures.hpp | 102 ++++++++++++- tests/bits/spatial_test_mapping.hpp | 278 ++++++++++++++-------------------- tests/bits/spatial_test_node.hpp | 2 +- tests/bits/spatial_test_traits.hpp | 9 +- tests/verify.cpp | 2 +- 10 files changed, 303 insertions(+), 264 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-04-29 14:16:03
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via fcd3af8dd76d856ba4fd2accc62a8f15166f0e0b (commit) via d9ca9f0b4ab3456500ae463dc264051f15642533 (commit) via 5b8555219ccf7ed4493bdd2be33ec6bbce47683e (commit) via 8e558ea903a92dd6c9089ddba7430d1826ff48d7 (commit) from e5b6d555843a398b873bcc8d8248a6fb9e097670 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit fcd3af8dd76d856ba4fd2accc62a8f15166f0e0b Author: Sylvain Bougerel <syl...@gm...> Date: Sun Apr 29 20:09:06 2012 +0800 Finally back with unit test implementation and a model that works for the iterators. Some unit test fails but it's a beginning. commit d9ca9f0b4ab3456500ae463dc264051f15642533 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 23:55:51 2012 +0800 A bit of shadow on the logos. commit 5b8555219ccf7ed4493bdd2be33ec6bbce47683e Merge: 8e558ea e5b6d55 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 23:18:20 2012 +0800 Merge branch 'task_3432355' of ssh://spatial.git.sourceforge.net/gitroot/spatial/spatial into task_3432355 commit 8e558ea903a92dd6c9089ddba7430d1826ff48d7 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 08:18:46 2012 +0800 Added a shadow to the cube, makes it look nicer. ----------------------------------------------------------------------- Summary of changes: doc/images/spatial_48.png | Bin 2836 -> 2935 bytes doc/images/spatial_96.png | Bin 5916 -> 6321 bytes doc/images/spatial_inkscape.svg | 100 ++++++++- src/bits/spatial_exceptions.hpp | 58 ++++- src/bits/spatial_geometry.hpp | 191 +++++++--------- src/bits/spatial_kdtree.hpp | 16 +- src/bits/spatial_kdtree.tpp | 29 ++-- src/bits/spatial_mapping.hpp | 364 +++++++++++++++++++---------- src/bits/spatial_mapping.tpp | 279 ++++++++++++----------- src/bits/spatial_neighbor.hpp | 164 ++++++++++---- src/bits/spatial_neighbor.tpp | 389 ++++++++++++++++--------------- src/bits/spatial_node.hpp | 187 +++++----------- src/bits/spatial_node.tpp | 128 ++++++------ src/bits/spatial_region.tpp | 51 ++-- src/bits/spatial_relaxed_kdtree.hpp | 30 +-- src/bits/spatial_relaxed_kdtree.tpp | 105 +++++---- src/boxmap.hpp | 16 +- src/boxset.hpp | 16 +- src/frozen_boxmap.hpp | 12 +- src/frozen_boxset.hpp | 12 +- src/frozen_pointmap.hpp | 12 +- src/frozen_pointset.hpp | 12 +- src/pointmap.hpp | 16 +- src/pointset.hpp | 16 +- tests/bits/spatial_test_details.hpp | 10 +- tests/bits/spatial_test_exceptions.hpp | 108 +++++----- tests/bits/spatial_test_fixtures.hpp | 201 ++-------------- tests/bits/spatial_test_function.hpp | 130 ++---------- tests/bits/spatial_test_node.hpp | 303 +++++++++++++++++++------ tests/bits/spatial_test_region.hpp | 102 +++++++++ tests/bits/spatial_test_types.hpp | 10 +- tests/verify.cpp | 12 +- 32 files changed, 1657 insertions(+), 1422 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-04-26 11:02:15
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via e5b6d555843a398b873bcc8d8248a6fb9e097670 (commit) from 3d8345202091d0a5f4ac8c7b7a2788b7fc251837 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e5b6d555843a398b873bcc8d8248a6fb9e097670 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 19:07:31 2012 +0800 SB: renaming test type to follow convention. Fixing swap function. ----------------------------------------------------------------------- Summary of changes: tests/bits/spatial_test_fixtures.hpp | 5 +- tests/bits/spatial_test_node.hpp | 100 +++++++++-------- tests/bits/spatial_test_types.hpp | 214 ++++++++++++++++++++++++++++++++++ 3 files changed, 270 insertions(+), 49 deletions(-) create mode 100644 tests/bits/spatial_test_types.hpp hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-04-25 23:53:21
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 3d8345202091d0a5f4ac8c7b7a2788b7fc251837 (commit) from e94597ae80ff64d515e5d8f73ec312bbdbfc07cd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3d8345202091d0a5f4ac8c7b7a2788b7fc251837 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 07:45:41 2012 +0800 New images and a brand new favico file for the next version of spatial. Drawn using Inkscape and it's much nicer. ----------------------------------------------------------------------- Summary of changes: doc/images/favicon.ico | Bin 1150 -> 1150 bytes doc/images/favicon.xcf | Bin 2652 -> 0 bytes doc/images/logo.gif | Bin 2317 -> 0 bytes doc/images/logo.png | Bin 3577 -> 0 bytes doc/images/logo.xcf | Bin 7727 -> 0 bytes doc/images/logo_transparent.gif | Bin 2239 -> 0 bytes doc/images/logo_transparent.png | Bin 4068 -> 0 bytes doc/images/spatial_48.png | Bin 0 -> 2836 bytes doc/images/spatial_96.png | Bin 0 -> 5916 bytes doc/images/spatial_inkscape.svg | 268 ++++++++++++++++++++++++++++++ doc/images/spatial_large.jpg | Bin 31271 -> 0 bytes doc/images/spatial_large.png | Bin 51086 -> 0 bytes doc/images/spatial_large.xcf | Bin 104153 -> 0 bytes doc/images/spatial_logo.gif | Bin 5457 -> 0 bytes doc/images/spatial_logo.png | Bin 11305 -> 0 bytes doc/images/spatial_logo.xcf | Bin 19063 -> 0 bytes doc/images/spatial_logo_transparent.gif | Bin 3734 -> 0 bytes doc/images/spatial_logo_transparent.png | Bin 10358 -> 0 bytes doc/images/spatial_simple_16.png | Bin 0 -> 1029 bytes doc/images/spatial_simple_22.png | Bin 0 -> 1371 bytes doc/images/spatial_simple_48.png | Bin 0 -> 2835 bytes doc/images/spatial_simple_inkscape.svg | 268 ++++++++++++++++++++++++++++++ doc/images/spatial_small.gif | Bin 9189 -> 0 bytes doc/images/spatial_small.png | Bin 20792 -> 0 bytes doc/images/spatial_small.xcf | Bin 34707 -> 0 bytes doc/images/spatial_small_transparent.gif | Bin 6068 -> 0 bytes doc/images/spatial_small_transparent.png | Bin 18037 -> 0 bytes 27 files changed, 536 insertions(+), 0 deletions(-) delete mode 100644 doc/images/favicon.xcf delete mode 100644 doc/images/logo.gif delete mode 100644 doc/images/logo.png delete mode 100644 doc/images/logo.xcf delete mode 100644 doc/images/logo_transparent.gif delete mode 100644 doc/images/logo_transparent.png create mode 100644 doc/images/spatial_48.png create mode 100644 doc/images/spatial_96.png create mode 100644 doc/images/spatial_inkscape.svg delete mode 100644 doc/images/spatial_large.jpg delete mode 100644 doc/images/spatial_large.png delete mode 100644 doc/images/spatial_large.xcf delete mode 100644 doc/images/spatial_logo.gif delete mode 100644 doc/images/spatial_logo.png delete mode 100644 doc/images/spatial_logo.xcf delete mode 100644 doc/images/spatial_logo_transparent.gif delete mode 100644 doc/images/spatial_logo_transparent.png create mode 100644 doc/images/spatial_simple_16.png create mode 100644 doc/images/spatial_simple_22.png create mode 100644 doc/images/spatial_simple_48.png create mode 100644 doc/images/spatial_simple_inkscape.svg delete mode 100644 doc/images/spatial_small.gif delete mode 100644 doc/images/spatial_small.png delete mode 100644 doc/images/spatial_small.xcf delete mode 100644 doc/images/spatial_small_transparent.gif delete mode 100644 doc/images/spatial_small_transparent.png hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-04-25 23:01:37
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via e94597ae80ff64d515e5d8f73ec312bbdbfc07cd (commit) via 795f50c86a89cf0d4f862ed61bccb791b0f3d031 (commit) from a38626972ab38b1edbbf182ff39729cd973812a7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e94597ae80ff64d515e5d8f73ec312bbdbfc07cd Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 06:53:31 2012 +0800 Changes made in order to record whatever is happening in the fixtures. Afterall, test are there to help testers, and they are not about efficiency. Plus it makes it more simple to read. commit 795f50c86a89cf0d4f862ed61bccb791b0f3d031 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Apr 26 06:35:30 2012 +0800 Merge branches 'task_3432355' and 'task_3432355' of ssh://spatial.git.sourceforge.net/gitroot/spatial/spatial into task_3432355 ----------------------------------------------------------------------- Summary of changes: ...test_fixtures.hpp => spatial_test_fixtures.hpp} | 64 +++----------------- tests/verify.cpp | 2 +- 2 files changed, 9 insertions(+), 57 deletions(-) rename tests/bits/{test_fixtures.hpp => spatial_test_fixtures.hpp} (88%) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-04-21 16:46:11
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via a38626972ab38b1edbbf182ff39729cd973812a7 (commit) from 73994b6fdca117a3ee3c1bf3b37d6314f6c50cd5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a38626972ab38b1edbbf182ff39729cd973812a7 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Apr 22 00:50:57 2012 +0800 Change pointer definition as it made it impossible for MSVC++ to deduce the type. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_node.hpp | 46 ++++++++++++++++++------------------- src/bits/spatial_node.tpp | 13 +++------- tests/bits/spatial_test_node.hpp | 28 +++++++++++----------- 3 files changed, 40 insertions(+), 47 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-03-04 15:43:14
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 73994b6fdca117a3ee3c1bf3b37d6314f6c50cd5 (commit) from ef70cec26512888ed8ca596c330b175057407329 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 73994b6fdca117a3ee3c1bf3b37d6314f6c50cd5 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Mar 4 23:48:09 2012 +0800 Added several constructs to the region class and the neighbor class of iterator. Fixed the neighbor iterators to use the new node framework. Remain to catch up with the unit tests now. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_details.hpp | 10 +- src/bits/spatial_geometry.hpp | 172 +++--- src/bits/spatial_kdtree.hpp | 9 +- src/bits/spatial_mapping.hpp | 78 ++- src/bits/spatial_mapping.tpp | 198 +++--- src/bits/spatial_neighbor.hpp | 1256 +++++++++++------------------------ src/bits/spatial_neighbor.tpp | 530 ++++++++-------- src/bits/spatial_node.hpp | 12 +- src/bits/spatial_region.hpp | 301 +++++---- src/bits/spatial_region.tpp | 78 ++-- src/bits/spatial_relaxed_kdtree.hpp | 17 +- src/bits/spatial_traits.hpp | 2 +- tests/bits/fixtures.hpp | 666 ------------------- tests/bits/spatial_test_details.hpp | 158 +++-- tests/bits/spatial_test_node.hpp | 165 ++++-- tests/bits/spatial_test_traits.hpp | 67 ++- tests/bits/test_fixtures.hpp | 523 +++++++++++++++ tests/verify.cpp | 2 +- 18 files changed, 1896 insertions(+), 2348 deletions(-) delete mode 100644 tests/bits/fixtures.hpp create mode 100644 tests/bits/test_fixtures.hpp hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-01-24 17:38:35
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via ef70cec26512888ed8ca596c330b175057407329 (commit) from 8d58cd8099fab9d814ecd3e8f3c2f453cbfd0614 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ef70cec26512888ed8ca596c330b175057407329 Author: Sylvain Bougerel <syl...@gm...> Date: Wed Jan 25 01:32:30 2012 +0800 Small changes to fix some errors, in particular on the typedefs. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_exceptions.hpp | 12 +++--- src/bits/spatial_mapping.hpp | 40 +++++++++-------- src/bits/spatial_node.hpp | 89 ++++++++++++++++++--------------------- src/bits/spatial_node.tpp | 2 +- src/bits/spatial_region.hpp | 43 +++++++++---------- src/bits/spatial_region.tpp | 24 +++++----- 6 files changed, 102 insertions(+), 108 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-01-24 11:24:31
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 8d58cd8099fab9d814ecd3e8f3c2f453cbfd0614 (commit) from 965821f35cd77149a40e96d77af6defb341932fa (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 8d58cd8099fab9d814ecd3e8f3c2f453cbfd0614 Author: Sylvain Bougerel <syl...@gm...> Date: Tue Jan 24 19:28:57 2012 +0800 A milestone is broken, the new node framework is proven to work. Some important algorithm are re-rewritten. Only neighbor iterators need to be rewritten, and then the unit tests. Then the rest is history! ----------------------------------------------------------------------- Summary of changes: doc/meta/concepts.hpp | 164 ++- src/bits/spatial_details.hpp | 20 +- src/bits/spatial_exceptions.hpp | 126 ++- src/bits/spatial_function.hpp | 82 ++- src/bits/spatial_geometry.hpp | 839 +++++++-------- src/bits/spatial_kdtree.hpp | 101 +- src/bits/spatial_kdtree.tpp | 110 +- src/bits/spatial_mapping.hpp | 256 +++-- src/bits/spatial_mapping.tpp | 190 ++-- src/bits/spatial_neighbor.hpp | 48 +- src/bits/spatial_node.hpp | 208 ++--- src/bits/spatial_node.tpp | 3 +- src/bits/spatial_range.hpp | 1001 ---------------- src/bits/spatial_range.tpp | 246 ---- src/bits/spatial_region.hpp | 1199 ++++++++++++++++++++ src/bits/spatial_region.tpp | 250 ++++ src/bits/spatial_relaxed_kdtree.hpp | 103 +- src/bits/spatial_relaxed_kdtree.tpp | 152 ++-- tests/bits/fixtures.hpp | 107 +- ...tial_test_range.hpp => spatial_test_region.hpp} | 690 ++++++------ tests/verify.cpp | 6 +- 21 files changed, 3116 insertions(+), 2785 deletions(-) delete mode 100644 src/bits/spatial_range.hpp delete mode 100644 src/bits/spatial_range.tpp create mode 100644 src/bits/spatial_region.hpp create mode 100644 src/bits/spatial_region.tpp rename tests/bits/{spatial_test_range.hpp => spatial_test_region.hpp} (71%) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-12-22 07:54:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via 965821f35cd77149a40e96d77af6defb341932fa (commit) from d8c656c4ee6135676c1d59d8d776a5d3b505b92f (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 965821f35cd77149a40e96d77af6defb341932fa Author: Sylvain Bougerel <syl...@gm...> Date: Thu Dec 22 15:46:20 2011 +0800 Porting Mapping iterator to the new node framework has been completed, but not tested. Porting Range iterator to the new node framework has just begun. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_mapping.hpp | 474 +++++++------- src/bits/spatial_mapping.tpp | 487 ++++++++------- src/bits/spatial_node.hpp | 78 ++- src/bits/spatial_range.hpp | 1462 +++++++++--------------------------------- src/bits/spatial_traits.hpp | 19 +- tests/verify.cpp | 6 +- 6 files changed, 874 insertions(+), 1652 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-11-08 14:44:25
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via d8c656c4ee6135676c1d59d8d776a5d3b505b92f (commit) from c7c52b4f11e76192f669b398b9643f23490a16bf (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d8c656c4ee6135676c1d59d8d776a5d3b505b92f Author: Sylvain Bougerel <syl...@gm...> Date: Tue Nov 8 22:46:38 2011 +0800 Added some description to the documentation of namespaces to have the functions in global scope appear in the generated documentation. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial.hpp | 36 ++++++++++++++++++------ src/bits/spatial_assert.hpp | 61 +++++++++++++++++++++++++++++++++-------- src/bits/spatial_details.hpp | 12 ++++++++ 3 files changed, 88 insertions(+), 21 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-11-08 01:28:52
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been updated via c7c52b4f11e76192f669b398b9643f23490a16bf (commit) via b77cbd522d6480c5697d373649258580adcc4ce8 (commit) from 90dc43fb70aac9d099d95672e69f68f5af197611 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c7c52b4f11e76192f669b398b9643f23490a16bf Author: Sylvain Bougerel <syl...@gm...> Date: Tue Nov 8 08:53:28 2011 +0800 spatial_node.hpp has been updated to a new cleaner interface for nodes and links. spatial_mapping.hpp interface is now set. spatial_mapping.tpp must still be amended however other iterators can now be adapted. Constness of key has been fixed in the (key, value) links. commit b77cbd522d6480c5697d373649258580adcc4ce8 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Nov 3 22:57:32 2011 +0800 spatial_mapping.hpp is now having the proper definition. I now have to apply this to other files ----------------------------------------------------------------------- Summary of changes: ChangeLog | 13 + doc/Doxyfile | 37 +- doc/meta/complexity.hpp | 162 ++++ doc/meta/concepts.hpp | 20 +- src/bits/spatial_details.hpp | 177 +++-- src/bits/spatial_exceptions.hpp | 164 ++-- src/bits/spatial_kdtree.hpp | 383 ++++------ src/bits/spatial_mapping.hpp | 1436 ++++++++++++++++------------------- src/bits/spatial_mapping.tpp | 1051 +++++++++++++------------- src/bits/spatial_node.hpp | 378 ++++++---- src/bits/spatial_node.tpp | 2 +- src/bits/spatial_relaxed_kdtree.hpp | 304 +++----- src/bits/spatial_traits.hpp | 117 +-- src/boxmap.hpp | 16 +- src/frozen_boxmap.hpp | 16 +- src/frozen_pointmap.hpp | 16 +- src/pointmap.hpp | 16 +- 17 files changed, 2173 insertions(+), 2135 deletions(-) create mode 100644 doc/meta/complexity.hpp hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-11-02 17:32:37
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, task_3432355 has been created at 90dc43fb70aac9d099d95672e69f68f5af197611 (commit) - Log ----------------------------------------------------------------- commit 90dc43fb70aac9d099d95672e69f68f5af197611 Author: Sylvain Bougerel <syl...@gm...> Date: Thu Nov 3 01:27:07 2011 +0800 Node has been refactored and iterator are being refactored. Unit tests are all broken, of course ----------------------------------------------------------------------- hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-10-25 14:55:11
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, master has been updated via e03fe8306eacaf14cae51cefa04375671150a39a (commit) from 9f7b006da17d207e50a90717cf6d26748d236a0d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e03fe8306eacaf14cae51cefa04375671150a39a Author: Sylvain Bougerel <syl...@gm...> Date: Tue Oct 25 22:50:18 2011 +0800 New interface for Kdtree and Relaxed_kdtree, that helps express the key type and value type is now stabilized. Unit tests will be reworked in the next version, in order to better separate unit tests ----------------------------------------------------------------------- Summary of changes: doc/meta/concepts.hpp | 45 +++- src/bits/spatial_kdtree.hpp | 148 +++++----- src/bits/spatial_kdtree.tpp | 58 ++-- src/bits/spatial_mapping.hpp | 20 +- src/bits/spatial_neighbor.hpp | 4 +- src/bits/spatial_range.hpp | 4 +- src/bits/spatial_relaxed_kdtree.hpp | 146 ++++------ src/bits/spatial_relaxed_kdtree.tpp | 66 ++--- src/bits/spatial_traits.hpp | 43 +--- src/boxmap.hpp | 149 ++++++----- src/boxset.hpp | 48 ++-- src/frozen_boxmap.hpp | 47 ++-- src/frozen_boxset.hpp | 41 ++- src/frozen_pointmap.hpp | 56 +++-- src/frozen_pointset.hpp | 42 ++- src/pointmap.hpp | 64 +++-- src/pointset.hpp | 47 ++-- tests/verify.cpp | 537 +++++++++++++++++------------------ 18 files changed, 804 insertions(+), 761 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2011-10-20 16:28:19
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "spatial". The branch, master has been updated via 9f7b006da17d207e50a90717cf6d26748d236a0d (commit) from 27079d189f54063b84a3f59d115afc230dc1019d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9f7b006da17d207e50a90717cf6d26748d236a0d Author: Sylvain Bougerel <syl...@gm...> Date: Fri Oct 21 00:31:35 2011 +0800 Doing a test commit for the email notification (and introducint the licence header at the same time). ----------------------------------------------------------------------- Summary of changes: src/pointset.hpp | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) hooks/post-receive -- spatial |
From: BOUGEREL S. <syl...@as...> - 2011-10-19 06:08:17
|
This is a test on the list. Sylvain Bougerel |