Skip to content
Snippets Groups Projects
Select Git revision
  • 0eebe887ce2a1910bb0c2ac539afcd964eefa9bb
  • main default protected
  • ElevateDegrees
  • Evaluate_p_and_v
  • 0.1
5 results

199_TrainModels_ANN.py

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)