Skip to content
Snippets Groups Projects
Select Git revision
  • release_EN
  • master default protected
  • rohlfing/fix-laplace-z-guis
  • development-lab
  • update-environment
  • development-multilang
  • releasetest_EN
  • releasetest_DE
  • rise
  • development
  • releasetest_source
11 results

GDET3_Discrete_Fourier-Transformation_GUI.ipynb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CMakeLists.txt 659 B
    cmake_minimum_required(VERSION 3.15.0)
    project(ExamplePruning VERSION 0.1.0)
    
    SET( CMAKE_CXX_STANDARD 11 )
    SET( CMAKE_CXX_STANDARD_REQUIRED ON )
    
    set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
    
    # which type the library should use as base type
    # this is not only for the interval but for many other things
    # as well, for example the type of the significances
    # if not specified, interval base type is double
    SET(INTERVAL_NETWORK_INTERVAL_BASETYPE double)
    
    # add_compile_options(-DDCO_CHUNK_TAPE)
    add_subdirectory(extern/interval_network)
    
    add_executable(network_pruner main.cpp)
    target_link_libraries(network_pruner interval_network)