summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-07-01 07:06:29 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-07-01 07:06:29 +0000
commite5085c7eeacb09696d415a2877855b989262e454 (patch)
tree3725fb00557ba4b2652c0e2fd33f6ac4e86bd924 /src/common
parent335269117566c598b38b55345ad1ceef0b4f45e2 (diff)
parent0ba8c838da6c82e9ff26e787e32057c803996b40 (diff)
Merge of fix_naming branch
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/trunk@1373 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: cdd9722e1d58fca13de0f9a9cf0404eb3a22d98d
Diffstat (limited to 'src/common')
-rw-r--r--src/common/doc/main_page.h6
-rw-r--r--src/common/example/CMakeLists.txt2
-rw-r--r--src/common/test/CMakeLists.txt2
-rw-r--r--src/common/test/points_off_reader_unit_test.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/common/doc/main_page.h b/src/common/doc/main_page.h
index 8154cc8e..2391e147 100644
--- a/src/common/doc/main_page.h
+++ b/src/common/doc/main_page.h
@@ -36,7 +36,7 @@
values of the codimension 1 cofaces that make it not Gabriel otherwise.
All simplices that have a filtration value strictly greater than a given alpha squared value are not inserted into
the complex.<br>
- <b>User manual:</b> \ref alpha_complex - <b>Reference manual:</b> Gudhi::alphacomplex::Alpha_complex
+ <b>User manual:</b> \ref alpha_complex - <b>Reference manual:</b> Gudhi::alpha_complex::Alpha_complex
</td>
</tr>
</table>
@@ -52,7 +52,7 @@
<td width="75%">
The cubical complex is an example of a structured complex useful in computational mathematics (specially
rigorous numerics) and image analysis.<br>
- <b>User manual:</b> \ref cubical_complex - <b>Reference manual:</b> Gudhi::Cubical_complex::Bitmap_cubical_complex
+ <b>User manual:</b> \ref cubical_complex - <b>Reference manual:</b> Gudhi::cubical_complex::Bitmap_cubical_complex
</td>
</tr>
</table>
@@ -89,7 +89,7 @@
This data-structure handles all simplicial complexes operations such as simplex enumeration or simplex removal but
operations that are particularly efficient are operations that do not require simplex enumeration such as edge
iteration, link computation or simplex contraction.<br>
- <b>User manual:</b> \ref skbl - <b>Reference manual:</b> Gudhi::skbl::Skeleton_blocker_complex
+ <b>User manual:</b> \ref skbl - <b>Reference manual:</b> Gudhi::skeleton_blocker::Skeleton_blocker_complex
</td>
</tr>
</table>
diff --git a/src/common/example/CMakeLists.txt b/src/common/example/CMakeLists.txt
index 83f874e1..59ee12c4 100644
--- a/src/common/example/CMakeLists.txt
+++ b/src/common/example/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.6)
-project(GUDHIDelaunayTriangulationOffFileReadWrite)
+project(Common_examples)
# need CGAL 4.7
if(CGAL_FOUND)
diff --git a/src/common/test/CMakeLists.txt b/src/common/test/CMakeLists.txt
index 789546ae..5f9c5dde 100644
--- a/src/common/test/CMakeLists.txt
+++ b/src/common/test/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.6)
-project(GUDHIDelaunayTriangulationOffFileReadWriteUT)
+project(Common_tests)
if (GCOVR_PATH)
# for gcovr to make coverage reports - Corbera Jenkins plugin
diff --git a/src/common/test/points_off_reader_unit_test.cpp b/src/common/test/points_off_reader_unit_test.cpp
index 73e19cbc..dbcc0434 100644
--- a/src/common/test/points_off_reader_unit_test.cpp
+++ b/src/common/test/points_off_reader_unit_test.cpp
@@ -35,7 +35,7 @@
#include <boost/test/unit_test.hpp>
typedef CGAL::Epick_d< CGAL::Dynamic_dimension_tag > Kernel;
-typedef typename Kernel::Point_d Point_d;
+typedef Kernel::Point_d Point_d;
BOOST_AUTO_TEST_CASE( points_doc_test )
{