Skip to content

Commit 794225c

Browse files
committed
[geogram] Update to 1.4.6
1 parent b1d0ad6 commit 794225c

103 files changed

Lines changed: 27326 additions & 3126 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ include(cmake/geogram.cmake)
3838

3939
set(VORPALINE_VERSION_MAJOR 1)
4040
set(VORPALINE_VERSION_MINOR 4)
41-
set(VORPALINE_VERSION_PATCH 5)
41+
set(VORPALINE_VERSION_PATCH 6)
4242
set(VORPALINE_VERSION ${VORPALINE_VERSION_MAJOR}.${VORPALINE_VERSION_MINOR}.${VORPALINE_VERSION_PATCH})
4343

4444
set(VORPALINE_INCLUDE_SUBPATH geogram${VORPALINE_VERSION_MAJOR})
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(VORPALINE_BUILD_DYNAMIC true)
2+
include(${GEOGRAM_SOURCE_DIR}/cmake/platforms/Linux-gcc.cmake)
3+
4+
set(ARM_FLAGS -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard -mlittle-endian -munaligned-access)
5+
6+
add_flags(CMAKE_CXX_FLAGS -DGEO_OS_RASPBERRY ${ARM_FLAGS})
7+
add_flags(CMAKE_C_FLAGS -DGEO_OS_RASPBERRY ${ARM_FLAGS})
8+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/lib/exploragram/hexdom/FF.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
#include <exploragram/hexdom/extra_connectivity.h>
4444
#include <geogram/NL/nl.h>
4545
#include <geogram/numerics/optimizer.h>
46-
#include <geogram/bibliography/bibliography.h>
4746

4847
#ifdef GEO_OPENMP
4948
#include <omp.h>
@@ -53,7 +52,6 @@
5352
namespace GEO {
5453

5554
FFopt::FFopt(Mesh* p_m) {
56-
geo_cite("DBLP:journals/tog/RaySL16");
5755
m = p_m;
5856
compute_tet_edge_graph(m,v2e, true); // here need a bidirectionl edge graph to speed up the LBFGS part
5957
Attribute<vec3> lockB(m->vertices.attributes(), "lockB");

0 commit comments

Comments
 (0)