Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/baptiste-genest/NESOTS
01 June 2024, 14:04:06 UTC
  • Code
  • Branches (1)
  • Releases (0)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/main
    No releases to show
  • a4c74a1
  • /
  • CMakeLists.txt
Raw File Download Save again
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
origin badgecontent badge
swh:1:cnt:238906979c44639f5deac9c23fa8b251859d9950
origin badgedirectory badge
swh:1:dir:a4c74a18ecd8e9e9ad93b6991435dc83ad5226bd
origin badgerevision badge
swh:1:rev:54d404d6d5dc3637ec2ac16a4e12bc1ebdf0eea2
origin badgesnapshot badge
swh:1:snp:56d5c0f212d094c22ee55ee1b5af34fc75a3956e

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Tip revision: 54d404d6d5dc3637ec2ac16a4e12bc1ebdf0eea2 authored by Baptiste GENEST on 30 April 2024, 07:09:33 UTC
Update README.md
Tip revision: 54d404d
CMakeLists.txt
project(NonEuclideanSlicedOT)
cmake_minimum_required(VERSION 3.12)

list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_FLAGS "-O3")

find_package(Eigen3 3.3 REQUIRED NO_MODULE)
find_package(OpenMP)

include(polyscope)
include(geometry-central)
include(eigen)
include(openmp)

add_subdirectory(deps/bvh)

file(GLOB SRC
     "src/**"
     "deps/CLI11.hpp"
)

message(STATUS ${SRC})

add_executable(spherical_mesh_sampling apps/mesh_sampling.cpp ${SRC})
target_link_libraries(spherical_mesh_sampling polyscope geometry-central  bvh OpenMP::OpenMP_CXX)

add_executable(spherical_bluenoise apps/spherical_bluenoise.cpp ${SRC})
target_link_libraries(spherical_bluenoise polyscope geometry-central  bvh OpenMP::OpenMP_CXX)

add_executable(hyperbolic_bluenoise apps/hyperbolic_bluenoise.cpp ${SRC})
target_link_libraries(hyperbolic_bluenoise polyscope geometry-central  bvh OpenMP::OpenMP_CXX)

add_executable(rotation_sampling apps/rotation_sampling.cpp ${SRC})
target_link_libraries(rotation_sampling polyscope geometry-central  bvh OpenMP::OpenMP_CXX)

add_executable(direction_sampling apps/direction_sampling.cpp ${SRC})
target_link_libraries(direction_sampling polyscope geometry-central bvh OpenMP::OpenMP_CXX)

add_executable(local_hyperbolic_mesh_sampling apps/local_hyperbolic_mapping.cpp ${SRC})
target_link_libraries(local_hyperbolic_mesh_sampling polyscope geometry-central bvh OpenMP::OpenMP_CXX)

add_executable(vizu_pc apps/vizu_pc.cpp)
target_link_libraries(vizu_pc polyscope geometry-central)

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API