spatial-commit Mailing List for Spatial C++ Library (Page 4)
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...> - 2013-07-28 08:17: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 "UNNAMED PROJECT". The branch, master has been updated via 25552e62275b6fcf21f44742e4eb101a6d17701b (commit) from 1aef998764806a147b8a3e82e60c8de61e440332 (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 25552e62275b6fcf21f44742e4eb101a6d17701b Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 28 16:17:20 2013 +0800 Improved the documentation a bit more. ----------------------------------------------------------------------- Summary of changes: TODO | 6 ++-- doc/Doxyfile | 64 ++--------------------------------- doc/manual/main.dox | 2 +- doc/xref_aliases | 40 ++++++++++++++++++---- src/bits/spatial_bidirectional.hpp | 24 ++++++-------- src/bits/spatial_builtin.hpp | 28 ++++++++-------- src/bits/spatial_equal.hpp | 1 + src/bits/spatial_neighbor.hpp | 21 ++++++------ src/bits/spatial_value_compare.hpp | 11 +++--- src/region_iterator.hpp | 49 +++++++++++++++++++-------- 10 files changed, 116 insertions(+), 130 deletions(-) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-28 04:15: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 "UNNAMED PROJECT". The branch, master has been updated via 1aef998764806a147b8a3e82e60c8de61e440332 (commit) via 45b28f405248c095e484e138e54f5ae643a361e4 (commit) via 447ec8831075a08ce83eb496cd246614dee4da9a (commit) via 792e620dd88b281f3da782cc81fd4583cd95aa42 (commit) via c8c6aefce275be4ef39273ae4877518356d191cf (commit) via 8a314b338ef890c9c046876f4da4d9964841255b (commit) via b142afec43b0faaf13c3a5e8ce88e9f5a46a4649 (commit) via 253ec08d88739aae1b9eb2224456bdd79aec33d8 (commit) via fe15096af50187b61e8f7f2c372cfd6067d68478 (commit) from 457ff98fa7ade760bdc42e07956c73b3f171b5c0 (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 1aef998764806a147b8a3e82e60c8de61e440332 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 28 12:15:00 2013 +0800 Update the changelog as well as the version commit 45b28f405248c095e484e138e54f5ae643a361e4 Merge: 457ff98 447ec88 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 28 11:32:19 2013 +0800 Merge branch 'task_7', adding the development for the optimized equal_iterator into the branch. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 6 + doc/Doxyfile | 237 +++++-- doc/manual/examples.dox | 5 + doc/manual/main.dox | 62 +- doc/src_aliases | 4 +- {tests => examples}/.gitignore | 4 +- examples/CMakeLists.txt | 3 + examples/runtime_container_rank.cpp | 25 + src/bits/spatial_compress.hpp | 8 +- src/bits/spatial_equal.hpp | 855 +++++++++++++++++++++++++ src/bits/spatial_kdtree.hpp | 8 +- src/bits/spatial_mapping.hpp | 19 + src/bits/spatial_rank.hpp | 94 --- src/bits/spatial_region.hpp | 176 +----- src/bits/spatial_relaxed_kdtree.hpp | 14 +- src/equal_iterator.hpp | 106 +++- src/region_iterator.hpp | 60 -- src/spatial.hpp | 6 +- tests/CMakeLists.txt | 2 +- tests/bits/spatial_test_details.hpp | 103 --- tests/bits/spatial_test_equal.hpp | 298 +++++++++ tests/bits/spatial_test_fixtures.hpp | 44 +- tests/bits/spatial_test_kdtree.hpp | 12 +- tests/bits/spatial_test_mapping.hpp | 19 + tests/bits/spatial_test_metric.hpp | 32 +- tests/bits/spatial_test_region.hpp | 114 ++-- tests/bits/spatial_test_relaxed_kdtree.hpp | 4 +- tests/verify.cpp | 8 +- tests/{verify_region.cpp => verify_equal.cpp} | 6 +- tests/verify_region.cpp | 4 +- 30 files changed, 1685 insertions(+), 653 deletions(-) create mode 100644 doc/manual/examples.dox copy {tests => examples}/.gitignore (55%) create mode 100644 examples/CMakeLists.txt create mode 100644 examples/runtime_container_rank.cpp create mode 100644 src/bits/spatial_equal.hpp create mode 100644 tests/bits/spatial_test_equal.hpp copy tests/{verify_region.cpp => verify_equal.cpp} (74%) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-28 03:30:29
|
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 "UNNAMED PROJECT". The branch, task_7 has been updated via 447ec8831075a08ce83eb496cd246614dee4da9a (commit) from 792e620dd88b281f3da782cc81fd4583cd95aa42 (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 447ec8831075a08ce83eb496cd246614dee4da9a Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 28 11:29:38 2013 +0800 All unit tests for equal_iterator have been written ----------------------------------------------------------------------- Summary of changes: examples/.gitignore | 4 +- src/bits/spatial_equal.hpp | 2 +- tests/bits/spatial_test_equal.hpp | 289 ++++++++++-------------------------- tests/bits/spatial_test_region.hpp | 28 ++-- 4 files changed, 93 insertions(+), 230 deletions(-) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-27 16:55:06
|
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 "UNNAMED PROJECT". The branch, task_7 has been updated via 792e620dd88b281f3da782cc81fd4583cd95aa42 (commit) from c8c6aefce275be4ef39273ae4877518356d191cf (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 792e620dd88b281f3da782cc81fd4583cd95aa42 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 28 00:51:36 2013 +0800 Finally, some compilation out of the equal iterator. Equal_begin is working, now on to write remaining unit tests. ----------------------------------------------------------------------- Summary of changes: doc/Doxyfile | 237 ++++++++++++++----- doc/manual/main.dox | 45 +--- {tests => examples}/.gitignore | 0 src/bits/spatial_equal.hpp | 322 ++++++++++++++++++++++--- src/bits/spatial_kdtree.hpp | 8 +- src/bits/spatial_mapping.hpp | 19 ++ src/bits/spatial_rank.hpp | 94 ------- src/bits/spatial_region.hpp | 23 ++ src/bits/spatial_relaxed_kdtree.hpp | 14 +- src/equal_iterator.hpp | 146 +++++++---- tests/CMakeLists.txt | 2 +- tests/bits/spatial_test_details.hpp | 103 -------- tests/bits/spatial_test_equal.hpp | 70 +++--- tests/bits/spatial_test_fixtures.hpp | 44 ++-- tests/bits/spatial_test_kdtree.hpp | 12 +- tests/bits/spatial_test_mapping.hpp | 19 ++ tests/bits/spatial_test_metric.hpp | 32 ++-- tests/bits/spatial_test_region.hpp | 86 +++---- tests/bits/spatial_test_relaxed_kdtree.hpp | 4 +- tests/verify.cpp | 8 +- tests/{verify_region.cpp => verify_equal.cpp} | 6 +- tests/verify_region.cpp | 4 +- 22 files changed, 761 insertions(+), 537 deletions(-) copy {tests => examples}/.gitignore (100%) copy tests/{verify_region.cpp => verify_equal.cpp} (74%) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-26 03:48: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 "UNNAMED PROJECT". The branch, task_7 has been updated via c8c6aefce275be4ef39273ae4877518356d191cf (commit) from 8a314b338ef890c9c046876f4da4d9964841255b (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 c8c6aefce275be4ef39273ae4877518356d191cf Author: Sylvain Bougerel <syl...@gm...> Date: Fri Jul 26 11:47:15 2013 +0800 Still not compilable, but starts to look almost complete. At least, compilation can be attempted. Unit test have been created based on region iterator. Those in region iterator have been updated. ----------------------------------------------------------------------- Summary of changes: tests/bits/spatial_test_equal.hpp | 443 +++++++++++++++++++++++++++++++++++++ 1 files changed, 443 insertions(+), 0 deletions(-) create mode 100644 tests/bits/spatial_test_equal.hpp hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-25 00:26:28
|
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 "UNNAMED PROJECT". The branch, task_7 has been updated via 8a314b338ef890c9c046876f4da4d9964841255b (commit) from b142afec43b0faaf13c3a5e8ce88e9f5a46a4649 (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 8a314b338ef890c9c046876f4da4d9964841255b Author: Sylvain Bougerel <syl...@gm...> Date: Thu Jul 25 08:25:34 2013 +0800 Almost done writing the meaty part of the iterator. Also added new example for the documentation! ----------------------------------------------------------------------- Summary of changes: doc/manual/examples.dox | 5 +++++ examples/CMakeLists.txt | 3 +++ examples/runtime_container_rank.cpp | 25 +++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 doc/manual/examples.dox create mode 100644 examples/CMakeLists.txt create mode 100644 examples/runtime_container_rank.cpp hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-22 15:39: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 "UNNAMED PROJECT". The branch, task_7 has been updated via b142afec43b0faaf13c3a5e8ce88e9f5a46a4649 (commit) from 253ec08d88739aae1b9eb2224456bdd79aec33d8 (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 b142afec43b0faaf13c3a5e8ce88e9f5a46a4649 Author: Sylvain Bougerel <syl...@gm...> Date: Mon Jul 22 23:26:00 2013 +0800 Added the squeleton for the strict invariant/relaxed invariant form in the equal_iterator. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_equal.hpp | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-21 05:48:34
|
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 "UNNAMED PROJECT". The branch, master has been updated via 457ff98fa7ade760bdc42e07956c73b3f171b5c0 (commit) from 60a201c255aa7dc63eb0be04ac5eb2d27e61b7a3 (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 457ff98fa7ade760bdc42e07956c73b3f171b5c0 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 21 13:47:30 2013 +0800 Updated the changelog and the generated documentation number was removed. It's not very useful. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 4 ++++ doc/Doxyfile | 2 +- src/spatial.hpp | 12 +++++++----- 3 files changed, 12 insertions(+), 6 deletions(-) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-07-21 05:29:28
|
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 "UNNAMED PROJECT". The branch, task_7 has been updated via 253ec08d88739aae1b9eb2224456bdd79aec33d8 (commit) from fe15096af50187b61e8f7f2c372cfd6067d68478 (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 253ec08d88739aae1b9eb2224456bdd79aec33d8 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Jul 21 13:28:40 2013 +0800 Added the missing comparison type to the iterator. Used empty member optimization. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_compress.hpp | 8 ++-- src/bits/spatial_equal.hpp | 63 ++++++++++++++++++++++++++++------------- 2 files changed, 47 insertions(+), 24 deletions(-) hooks/post-receive -- UNNAMED PROJECT |
From: Sylvain B. <bou...@us...> - 2013-03-16 09:45: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 7e258e73bcbe04f21052df95adf1f5954ef98dd9 (commit) from 8107146ec2359c2a97f7425565887d8cf5371586 (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 7e258e73bcbe04f21052df95adf1f5954ef98dd9 Author: Sylvain Bougerel <syl...@gm...> Date: Sat Mar 16 17:42:59 2013 +0800 Used ordered iterator to make relative operators on tree work. Written first part of unit test for neighbor_minimum but it seems the algorithm has some bugs. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 35 +++-- src/bits/spatial_kdtree.hpp | 95 +++++++--- src/bits/spatial_neighbor.hpp | 102 +++++++++--- src/bits/spatial_neighbor.tpp | 322 +++++++++++++++++----------------- src/bits/spatial_relaxed_kdtree.hpp | 116 +++++++++---- tests/bits/spatial_test_neighbor.hpp | 118 +++++++------ 6 files changed, 476 insertions(+), 312 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2013-03-13 06:29:33
|
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 8107146ec2359c2a97f7425565887d8cf5371586 (commit) from 764634c8f6d2cd44081c4bc7a953377011c8ccdd (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 8107146ec2359c2a97f7425565887d8cf5371586 Author: Sylvain Bougerel <syl...@gm...> Date: Wed Mar 13 14:31:55 2013 +0800 Enforced a new set or styles rules: * any class or struct that deals with private/public fields shall be changed to a class. struct will announce pure public interface. * private members are prefixed with "_". Shadowing parameters are postfixed with "_". If one parameters shadows in a function, then all parameters should be postfixed with "_". ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_node.hpp | 16 ++++++++---- src/bits/spatial_region.hpp | 54 +++++++++++++++++++++++------------------- 2 files changed, 40 insertions(+), 30 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2013-03-12 16:19:17
|
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 764634c8f6d2cd44081c4bc7a953377011c8ccdd (commit) from c4425c59f53d000a33feea9c99af3e6099715bfb (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 764634c8f6d2cd44081c4bc7a953377011c8ccdd Author: Sylvain Bougerel <syl...@gm...> Date: Wed Mar 13 00:17:15 2013 +0800 Finally ready to start the real unit-testing with neighbor iterators. A few functions remains to be written, but the base is strong now. Only specialized euclidian_neighbor_begin, etc, are missing. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_details.hpp | 24 +- src/bits/spatial_kdtree.hpp | 116 ++++---- src/bits/spatial_kdtree.tpp | 20 +- src/bits/spatial_mapping.hpp | 26 +- src/bits/spatial_metric.hpp | 550 +++++++++++++++++----------------- src/bits/spatial_neighbor.hpp | 98 ++++--- src/bits/spatial_ordered.hpp | 18 +- src/bits/spatial_region.hpp | 142 +++++----- src/bits/spatial_relaxed_kdtree.hpp | 112 ++++---- tests/bits/spatial_test_metric.hpp | 27 +- tests/bits/spatial_test_neighbor.hpp | 33 ++- 11 files changed, 596 insertions(+), 570 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2013-03-03 06:36:46
|
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 c4425c59f53d000a33feea9c99af3e6099715bfb (commit) from 3196df52ff08d745293be7101286a104819a5724 (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 c4425c59f53d000a33feea9c99af3e6099715bfb Author: Sylvain Bougerel <syl...@gm...> Date: Sun Mar 3 14:39:24 2013 +0800 Finalized the interface for the neighbor_iterator (finally). Renamed the geometries into metrics. The trick was to realize that it did not need the DistanceType in the function. It could be casted in the return type by a cheap copy. ----------------------------------------------------------------------- Summary of changes: doc/meta/concepts.dox | 30 +- src/bits/spatial_geometry.hpp | 334 -------------- src/bits/spatial_math.hpp | 7 +- src/bits/spatial_metric.hpp | 358 +++++++++++++++ src/bits/spatial_neighbor.hpp | 471 ++++++++++---------- src/bits/spatial_traits.hpp | 14 +- ...l_test_geometry.hpp => spatial_test_metric.hpp} | 30 +- tests/verify_neighbor.cpp | 2 +- 8 files changed, 638 insertions(+), 608 deletions(-) delete mode 100644 src/bits/spatial_geometry.hpp create mode 100644 src/bits/spatial_metric.hpp rename tests/bits/{spatial_test_geometry.hpp => spatial_test_metric.hpp} (92%) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-12-16 15:43:29
|
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 3196df52ff08d745293be7101286a104819a5724 (commit) from eb360846db5f4c6d032725ec7bc73fca71d3e50a (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 3196df52ff08d745293be7101286a104819a5724 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Dec 16 23:41:31 2012 +0800 Build the first easy test on neighbor_iterators. Also changed overlap_iterator and enclosed_iterator to overlap_region_iterator and enclosed_region_iterator. This is more consistent. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_mapping.hpp | 192 +++++++++++++--------------------- src/bits/spatial_neighbor.hpp | 160 ++++++++++++++++------------- src/bits/spatial_region.hpp | 100 +++++++++--------- tests/bits/spatial_test_geometry.hpp | 1 - tests/bits/spatial_test_neighbor.hpp | 33 ++++++- tests/bits/spatial_test_region.hpp | 64 ++++++------ tests/verify_neighbor.cpp | 2 +- 7 files changed, 276 insertions(+), 276 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-12-16 12:53:41
|
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 eb360846db5f4c6d032725ec7bc73fca71d3e50a (commit) from 0d96e93ce6546792d64c5d0c7a4052f93cb87668 (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 eb360846db5f4c6d032725ec7bc73fca71d3e50a Author: Sylvain Bougerel <syl...@gm...> Date: Sun Dec 16 20:52:33 2012 +0800 Finish porting neighbor iterators. Gotta start testing them now. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_details.hpp | 40 ++ src/bits/spatial_geometry.hpp | 86 +---- src/bits/spatial_math.hpp | 2 +- src/bits/spatial_neighbor.hpp | 753 +++++++++++++++++++--------------- src/bits/spatial_neighbor.tpp | 28 +- tests/CMakeLists.txt | 6 +- tests/bits/spatial_test_geometry.hpp | 28 +- tests/bits/spatial_test_mapping.hpp | 6 +- 8 files changed, 515 insertions(+), 434 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-24 18:14:43
|
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 0d96e93ce6546792d64c5d0c7a4052f93cb87668 (commit) from 46fa80168c636a2d62a2da0cce183c63c412d101 (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 0d96e93ce6546792d64c5d0c7a4052f93cb87668 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Nov 25 02:13:21 2012 +0800 Finished testing geometry. Can start to port the neighbor_iterator ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_math.hpp | 35 +- tests/bits/spatial_test_geometry.hpp | 580 +++------------------------------- 2 files changed, 64 insertions(+), 551 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-24 17:41: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 46fa80168c636a2d62a2da0cce183c63c412d101 (commit) from c9105ea83516c62ef584172606e23afab7b30236 (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 46fa80168c636a2d62a2da0cce183c63c412d101 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Nov 25 01:39:07 2012 +0800 Added a new kind of indirection for neighbor_iterator's geometries. Now geometries will be easier to use with less to types, and enable_if will help make sure the user are not getting things wrong. Just remain porting the unit tests. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_geometry.hpp | 505 ++++++++++++++++++--------------- src/bits/spatial_kdtree.hpp | 3 +- src/bits/spatial_math.hpp | 12 - src/bits/spatial_relaxed_kdtree.hpp | 10 +- tests/bits/spatial_test_geometry.hpp | 121 ++++----- tests/bits/spatial_test_types.hpp | 27 ++ 6 files changed, 366 insertions(+), 312 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-19 16:43: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, task_3432355 has been updated via c9105ea83516c62ef584172606e23afab7b30236 (commit) from 8f392f2868a1fe1889b9a908c9e50758f595c62b (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 c9105ea83516c62ef584172606e23afab7b30236 Author: Sylvain Bougerel <syl...@gm...> Date: Tue Nov 20 00:02:37 2012 +0800 Modified the enable_if construct to add the more compact type-friendly construct. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_check_concept.hpp | 20 ++++++++-- src/bits/spatial_geometry.hpp | 30 +++++++++------ src/bits/spatial_math.hpp | 38 ++++++-------------- tests/bits/spatial_test_geometry.hpp | 66 +++++++++++++++++++--------------- 4 files changed, 82 insertions(+), 72 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-18 14:26:47
|
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 8f392f2868a1fe1889b9a908c9e50758f595c62b (commit) from 2994b1c653d3ef82826439700135db96422c2649 (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 8f392f2868a1fe1889b9a908c9e50758f595c62b Author: Sylvain Bougerel <syl...@gm...> Date: Sun Nov 18 22:23:29 2012 +0800 Added some enable_if magic to the geometry calculation. Optimized the code a tiny bit, made it more targetted to primitive types. Isolated mathematical operations into one single file. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_check_concept.hpp | 50 ++++ src/bits/spatial_exceptions.hpp | 144 +--------- src/bits/spatial_geometry.hpp | 519 +++++++--------------------------- src/bits/spatial_math.hpp | 379 +++++++++++++++++++++++++ tests/bits/spatial_test_geometry.hpp | 29 ++- 5 files changed, 568 insertions(+), 553 deletions(-) create mode 100644 src/bits/spatial_check_concept.hpp create mode 100644 src/bits/spatial_math.hpp hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-17 17:13: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 2994b1c653d3ef82826439700135db96422c2649 (commit) from fa112c73dca90305d8374d66e3f1f0a6fe117c9c (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 2994b1c653d3ef82826439700135db96422c2649 Author: Sylvain Bougerel <syl...@gm...> Date: Sun Nov 18 01:11:43 2012 +0800 Some improvement brought to geometry to make it more generic and compatible with various types, including user defined types. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_exceptions.hpp | 80 +++++++++++++++---------- src/bits/spatial_geometry.hpp | 110 +++++++++++++++++++++------------- tests/bits/spatial_test_geometry.hpp | 6 ++ tests/bits/spatial_test_traits.hpp | 11 ---- 4 files changed, 123 insertions(+), 84 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-17 14:41:00
|
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 fa112c73dca90305d8374d66e3f1f0a6fe117c9c (commit) from 6516780ad70dcaabc6660fc65f33f0a7c365eb1f (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 fa112c73dca90305d8374d66e3f1f0a6fe117c9c Author: Sylvain Bougerel <syl...@gm...> Date: Sat Nov 17 22:38:42 2012 +0800 Optimized the upper_bound_mapping algorithm for each type of relaxed/strict trees. ----------------------------------------------------------------------- Summary of changes: src/bits/spatial_mapping.tpp | 436 +++++++++++++++++++++++++----------------- 1 files changed, 264 insertions(+), 172 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-17 13:07: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 6516780ad70dcaabc6660fc65f33f0a7c365eb1f (commit) from ecb1530bf202046edfffecee993f77e3776fc8c7 (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 6516780ad70dcaabc6660fc65f33f0a7c365eb1f Author: Sylvain Bougerel <syl...@gm...> Date: Sat Nov 17 21:05:06 2012 +0800 Fixed all the ordered iterator tests. Now it's complete! However I suspect that mapping_iterator has issues that are simply not showing in the tests. Mapping iterator must be reviewed... ----------------------------------------------------------------------- Summary of changes: ChangeLog | 5 + TODO | 78 +++--- src/bits/spatial_mapping.tpp | 5 +- src/bits/spatial_ordered.tpp | 105 +++++++- tests/bits/spatial_test_mapping.hpp | 290 +++++++++--------- tests/bits/spatial_test_ordered.hpp | 551 ++++++++++++++--------------------- tests/bits/spatial_test_types.hpp | 35 +++ 7 files changed, 549 insertions(+), 520 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-17 06:58:43
|
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 ecb1530bf202046edfffecee993f77e3776fc8c7 (commit) from cd6e1497a1626c7820fe11e277c62b9abf10b6f9 (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 ecb1530bf202046edfffecee993f77e3776fc8c7 Author: Sylvain Bougerel <syl...@gm...> Date: Sat Nov 17 14:57:04 2012 +0800 New ordered iterator is now working for the minimum and maximum functions. ----------------------------------------------------------------------- Summary of changes: TODO | 88 +++++++++++++++++----------------- src/bits/spatial_kdtree.hpp | 9 ---- src/bits/spatial_ordered.tpp | 4 ++ src/bits/spatial_relaxed_kdtree.hpp | 17 ------- tests/bits/spatial_test_ordered.hpp | 64 +++++++++++-------------- tests/verify.cpp | 2 - 6 files changed, 76 insertions(+), 108 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-17 05:34:27
|
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 cd6e1497a1626c7820fe11e277c62b9abf10b6f9 (commit) from c5181968f6989886af157919a32d61a3f6bc5a31 (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 cd6e1497a1626c7820fe11e277c62b9abf10b6f9 Author: Sylvain Bougerel <syl...@gm...> Date: Sat Nov 17 13:33:47 2012 +0800 This commit is breaking the unit tests... but I prefer to fix it on my desktop... ----------------------------------------------------------------------- Summary of changes: TODO | 57 +++++++++++++++++++--- src/bits/spatial_kdtree.hpp | 28 ++++++++--- src/bits/spatial_mapping.hpp | 12 ++--- src/bits/spatial_neighbor.hpp | 18 ++----- src/bits/spatial_node.hpp | 6 +-- src/bits/spatial_ordered.hpp | 12 ++--- src/bits/spatial_ordered.tpp | 92 +++++++++++++++++----------------- src/bits/spatial_region.hpp | 10 ++-- src/bits/spatial_relaxed_kdtree.hpp | 21 ++++++++- tests/bits/spatial_test_mapping.hpp | 4 +- tests/bits/spatial_test_ordered.hpp | 67 ++++++++++--------------- tests/bits/spatial_test_region.hpp | 3 +- 12 files changed, 185 insertions(+), 145 deletions(-) hooks/post-receive -- spatial |
From: Sylvain B. <bou...@us...> - 2012-11-11 19:02:53
|
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 c5181968f6989886af157919a32d61a3f6bc5a31 (commit) from 1fea9e181e46f4873734956fd4d8653dee71bf9d (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 c5181968f6989886af157919a32d61a3f6bc5a31 Author: Sylvain Bougerel <syl...@gm...> Date: Mon Nov 12 03:01:07 2012 +0800 Added the first tests for the ordered_iterator and completed its entire implementation. Rewrote a bit the TODO list to set clear objectives by the end of the year. ----------------------------------------------------------------------- Summary of changes: TODO | 103 ++-- src/bits/spatial_mapping.tpp | 7 +- src/bits/spatial_ordered.tpp | 912 +++++++++++++++++----- tests/CMakeLists.txt | 2 +- tests/bits/spatial_test_ordered.hpp | 650 +++++++++++++++ tests/{verify_mapping.cpp => verify_ordered.cpp} | 6 +- 6 files changed, 1433 insertions(+), 247 deletions(-) create mode 100644 tests/bits/spatial_test_ordered.hpp copy tests/{verify_mapping.cpp => verify_ordered.cpp} (73%) hooks/post-receive -- spatial |