From fa27d8d45ca84bcff707dcdc7e2d459dde5587ea Mon Sep 17 00:00:00 2001 From: Pedro Garcia Date: Thu, 8 Apr 2021 15:24:35 +0200 Subject: [PATCH 01/11] Fixes to create NEST synapse-models from nineml, with pype9 --- .../StdpSongAbbott/compile/CMakeCache.txt | 373 +++ .../CMakeFiles/3.10.2/CMakeCXXCompiler.cmake | 75 + .../3.10.2/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 19960 bytes .../CMakeFiles/3.10.2/CMakeSystem.cmake | 15 + .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 576 +++++ .../CMakeFiles/3.10.2/CompilerIdCXX/a.out | Bin 0 -> 20112 bytes .../CMakeDirectoryInformation.cmake | 16 + .../compile/CMakeFiles/CMakeRuleHashes.txt | 2 + .../compile/CMakeFiles/Makefile.cmake | 104 + .../compile/CMakeFiles/Makefile2 | 214 ++ .../CXX.includecache | 2054 +++++++++++++++++ .../DependInfo.cmake | 29 + .../StdpSongAbbott.cpp.o | Bin 0 -> 261864 bytes .../StdpSongAbbottModule.cpp.o | Bin 0 -> 125176 bytes .../StdpSongAbbottModule_lib.dir/build.make | 140 ++ .../cmake_clean.cmake | 11 + .../depend.internal | 345 +++ .../StdpSongAbbottModule_lib.dir/depend.make | 345 +++ .../StdpSongAbbottModule_lib.dir/flags.make | 10 + .../StdpSongAbbottModule_lib.dir/link.txt | 1 + .../progress.make | 4 + .../CXX.includecache | 2054 +++++++++++++++++ .../DependInfo.cmake | 24 + .../StdpSongAbbott.cpp.o | Bin 0 -> 261864 bytes .../StdpSongAbbottModule.cpp.o | Bin 0 -> 125064 bytes .../build.make | 140 ++ .../cmake_clean.cmake | 11 + .../depend.internal | 345 +++ .../depend.make | 345 +++ .../flags.make | 10 + .../StdpSongAbbottModule_module.dir/link.txt | 1 + .../progress.make | 4 + .../compile/CMakeFiles/TargetDirectories.txt | 12 + .../compile/CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/dist.dir/DependInfo.cmake | 11 + .../compile/CMakeFiles/dist.dir/build.make | 77 + .../CMakeFiles/dist.dir/cmake_clean.cmake | 8 + .../compile/CMakeFiles/dist.dir/progress.make | 2 + .../compile/CMakeFiles/feature_tests.bin | Bin 0 -> 19904 bytes .../compile/CMakeFiles/feature_tests.cxx | 405 ++++ .../generate_help.dir/DependInfo.cmake | 11 + .../CMakeFiles/generate_help.dir/build.make | 74 + .../generate_help.dir/cmake_clean.cmake | 5 + .../generate_help.dir/depend.internal | 3 + .../CMakeFiles/generate_help.dir/depend.make | 3 + .../generate_help.dir/progress.make | 1 + .../compile/CMakeFiles/progress.marks | 1 + .../StdpSongAbbott/compile/CPackConfig.cmake | 86 + .../compile/CPackSourceConfig.cmake | 92 + .../StdpSongAbbott/compile/Makefile | 330 +++ .../compile/StdpSongAbbottModule.so | Bin 0 -> 202488 bytes .../compile/cmake_install.cmake | 108 + .../compile/doc/help/helpindex.hlp | 1 + .../compile/doc/help/helpindex.html | 1122 +++++++++ .../compile/install_manifest.txt | 6 + .../compile/libStdpSongAbbottModule.so | Bin 0 -> 202576 bytes .../install/include/StdpSongAbbottModule.h | 58 + .../install/lib/StdpSongAbbottModule.so | Bin 0 -> 202488 bytes .../install/lib/libStdpSongAbbottModule.so | Bin 0 -> 202576 bytes .../StdpSongAbbottModule/help/helpindex.hlp | 1 + .../StdpSongAbbottModule/help/helpindex.html | 1122 +++++++++ .../share/sli/StdpSongAbbottModule-init.sli | 10 + .../StdpSongAbbott/src/CMakeLists.txt | 285 +++ .../StdpSongAbbott/src/StdpSongAbbott.cpp | 921 ++++++++ .../StdpSongAbbott/src/StdpSongAbbott.h | 558 +++++ .../src/StdpSongAbbottModule.cpp | 80 + .../StdpSongAbbott/src/StdpSongAbbottModule.h | 58 + .../src/sli/StdpSongAbbottModule-init.sli | 10 + examples/simple_STDP_nineml.py | 2 +- pyNN/nest/__init__.py | 6 + pyNN/nest/nineml.py | 121 +- 71 files changed, 12827 insertions(+), 12 deletions(-) create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeCache.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake create mode 100755 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeSystem.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/a.out create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/CMakeRuleHashes.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/Makefile.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/Makefile2 create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/CXX.includecache create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/DependInfo.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbott.cpp.o create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbottModule.cpp.o create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/build.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/cmake_clean.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/depend.internal create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/depend.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/flags.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/link.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/progress.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/CXX.includecache create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/DependInfo.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/StdpSongAbbott.cpp.o create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/StdpSongAbbottModule.cpp.o create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/build.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/cmake_clean.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/depend.internal create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/depend.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/flags.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/link.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_module.dir/progress.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/TargetDirectories.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/cmake.check_cache create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/dist.dir/DependInfo.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/dist.dir/build.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/dist.dir/cmake_clean.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/dist.dir/progress.make create mode 100755 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/feature_tests.bin create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/feature_tests.cxx create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/DependInfo.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/build.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/cmake_clean.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/depend.internal create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/depend.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/generate_help.dir/progress.make create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/progress.marks create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CPackConfig.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/CPackSourceConfig.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/Makefile create mode 100755 examples/NEST_nineml_models/StdpSongAbbott/compile/StdpSongAbbottModule.so create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/cmake_install.cmake create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/doc/help/helpindex.hlp create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/doc/help/helpindex.html create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/compile/install_manifest.txt create mode 100755 examples/NEST_nineml_models/StdpSongAbbott/compile/libStdpSongAbbottModule.so create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/include/StdpSongAbbottModule.h create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/lib/StdpSongAbbottModule.so create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/lib/libStdpSongAbbottModule.so create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/share/doc/StdpSongAbbottModule/help/helpindex.hlp create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/share/doc/StdpSongAbbottModule/help/helpindex.html create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/install/share/sli/StdpSongAbbottModule-init.sli create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/CMakeLists.txt create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.cpp create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.h create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.cpp create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.h create mode 100644 examples/NEST_nineml_models/StdpSongAbbott/src/sli/StdpSongAbbottModule-init.sli diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeCache.txt b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeCache.txt new file mode 100644 index 000000000..59e76a346 --- /dev/null +++ b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeCache.txt @@ -0,0 +1,373 @@ +# This is the CMakeCache file. +# For build in directory: /home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/compile +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/install + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=StdpSongAbbottModule + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +StdpSongAbbottModule_BINARY_DIR:STATIC=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/compile + +//Value Computed by CMake +StdpSongAbbottModule_SOURCE_DIR:STATIC=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src + +//Dependencies for target +StdpSongAbbottModule_lib_LIB_DEPENDS:STATIC= + +//Dependencies for target +StdpSongAbbottModule_module_LIB_DEPENDS:STATIC= + +//Specify the `nest-config` executable. +with-nest:STRING=/home/pedroernesto/anaconda3/build/NEST/bin/nest-config + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/compile +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/install + diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..3e37f686d --- /dev/null +++ b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/home/pedroernesto/anaconda3/bin/x86_64-conda_cos6-linux-gnu-c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.3.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/pedroernesto/anaconda3/lib/gcc/x86_64-conda_cos6-linux-gnu/7.3.0;/home/pedroernesto/anaconda3/lib/gcc;/home/pedroernesto/anaconda3/x86_64-conda_cos6-linux-gnu/lib;/home/pedroernesto/anaconda3/x86_64-conda_cos6-linux-gnu/sysroot/lib;/home/pedroernesto/anaconda3/x86_64-conda_cos6-linux-gnu/sysroot/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..c68544f2f74106a22e42e3daf4d987a4081d15f2 GIT binary patch literal 19960 zcmeHPeQ;FQb-!<)J{C(_EdpG?NqN{%W4qdwgb>15uqz>0#p1&tQXDKlR=ZEqI;&lI zcZG%H4-#UJWe1nWnK*V+GSjpjx8pxD`6C(9aRwKfWZK3InUtRd%$f#Jdp3mW)i-jcFb!&kac4~cwocnuVNA3K$h10%Q$Gcu$ z+I0IF>TZf~IyKVO8BQl#)2YnVbnA3?S8G>iD4z{=$bOT5(%rFZziblc(UO!9ive3S z?#`KJNkBHF*NiKGs|gp4QyNkb{`R+GQ|I1I` zJbC`X1D|@}@fROCb^N_R|zlYW~{D&1!)e~POG zBkh1U*%;^fLNam39W=JPgl&&aWHWZY5YH8CTi63bJME;CbH-Bnf|DEC*_X~{oT2zg z+EKEK68M}@?tqOY5_X=bb^$8EVG`4Edo-1ar&ABZl}#cYbt0b1Fej0pBCQmH?S?p+ z%GgtRCkb&fUWh9Lw=Pr*phxm~mN^+{JESdk3=Z`6*&U&d&;}76&rUeuNhg`hI=PIK zFJ!~E(p*Z(_*!{=o35p$iruJSqh&^$- z;47Y!p<~B;z7E#@*zwwDNwn!|Z02I28JZilra4@k9XPV89EJ0W2EVGW5~m`1kO51$MDb=kvi>@pNpa_TNE9i%ZYGePM1RY!CjZ z_8-78qW2A-IYZuu-->}v*vzAsVlz{-KkoksfyFcZmtu)?2=!P1S^i#)ula|kjsA~H z?8iOqkA}}Qulh1sis&CiKRYnGeZ zzJ?Ax@lL^N|0UZG&is0C=E}C2chT=Iu}%Lv^((p$2Zy8gMTevJN9{ACqaoIR zUv^|4^6?^KNYBUK#$7aH$F3F&HN|spzkA@|@EIwYdx7G)N0V%FwW?;Int^Htsu`$e zpqhbd2C5mTW}upZY6hwq_-&U*RQ#m*kr#A*Hh5rZ#cv!+xu{R z8*Px^_r8X95d$KMT z=ss4zGZ4uIx}$-%XkcA$z=9t1djo#?UFj_RT!o+V%z;@g)eKZKP|ZL!1Jw*vGf>Sy zH3QWQR5MV`z$cgid|#A>Lwac}wPf)^wQF{M@0;z>qdj$0niUYdo@>-JZ@8m9vs8Fr zV~rxkoL(&b=e1&%SV#3{I$A$cIiV5WGdHW{w6~VZ3f*Aru#{!FhRZZ$P}-vxQ5;^Q zu|BUq^)_+wJKAtuGnju_H-y)i(^`-B`Le$ci>f~mOI3XFl>IxW?U8>;bH1@`l=NR| z`3D}k4)cit-dFAo*cB}2@IJ{MeSLRY>k_$a9$PfC>DFC4toBgH`cPY_vvX5xysb0Y zcAK>^1ctK5M|1s#L1mKn<=$TIzC_VF-Y4+YT&1(bXGHn?^OBtR?dDj)11XLg1Aci6 zIR3+~{{1d=9>rxGrHv3Z@*RWUm<8VW3XDh`$K^Bpw5!?YtAB<-P5sXZ`0HPjvO3z4 z?DN&01TbrAQ<;LO*&!8b|5hoS2B>`rm9b(M>P4oo0I2*0qST1J!2HHF;EktHQCM&9 zo&wM3mk!MbpyNAF??P(mMT~AptqNU7?`Y_%7k+;Na1jmQ8}6n`VsbqD{f~j+_kS6+ z&!{^M(C}@zH8xUP8nzRsP~-zZsD!%A#e)tt*IqL#>S3;EsCN z3f!n=;#PpBkl4CHwdd9q6g{&1`Cjk?A)^AH95&aM+T%lCgY%AwT-<j4ho{Y^ z13v5$H*S#uK3yq*pl$0RdTh{RMD&SsmDJRp^;|NW$vElsk?=$!EH|vTj-->oCMHv9 zCzr=odOEPu)oHhHSl`**wV|`EqoboM{7^Rc`EY1tDg|ZLjaF%GC$jl2eadAlGZmH^ z^jn*!eehvy-~X-Z^0zmf$|TZLNjy-a(2{k* zoV?2nekOJhKXm3rs($=c|MM$-*m++$|6xx5|6Nw{xkPx34kEO6gxYaTAdJ%obil`o z?z1{V>)UaHAwQnY6|AXDJ~ftck{12yDi&d$GYTcG#CSX>aBgBu>Pw^~BRdMww`r65 zGiJ3;6s9sx&zO^Oa;XH!crG#Cqs|{$tz%Z}?hbV!xjndHFl-$K?B0aLhw0bmD)7-DopD;eT`M%})KK8CM**jKXT%VyN=>z)O^+O+|Fy`W-< z&njfTW|eNu@`<)@G0w_{*f($R@h}sy_}r!2!o&|ApC2seo27YtIlrbfpD*Xv3ZBQ8 z^Xp3U{c?W2;CXR5-!FJRUCv)5c%EL)zd`VPzMPNML(t7pxG5TiRgvE$A{F@y&zF%W zv(kAk$%hk*G|G!97MIRlx+Nw~hD};-j>1i`q;!tdEj2M?o$YaRSbv$QG`}~+je^fR zxvflE4Mp4>_OtLDA4$v#=i?NAr84x?rnt$&QKTuq-YpcFg8n)$ET)_rSK_Z)$OLD8 zqCGFBIbe-=uQ<<97}yp0w9fV69N#0J@j&a9N`7ty->7iEHc0-$`$fNXSHcPLUXIe&7iaQIwfrmF}0YTw){}tfGUuO|lo!cd7B0wcS zB&);^$V4rC9#?~JRCq2nO8&xgsePKy>t%{ZWsl@96?2}v4TF#A@q*_%a~=K{rJse* zb+b>1O6OsphJK~d+ou2eM5B0*WTu$=8yZ@g$X-B2YzYx zn9SN^>Fh{6Z6^y^EHmO$(}ETqX{X>MLtWk7?Sce$DmhKmdNG=dPdIjRYGUFD$Lrs< zO@`aPH@dUmW@_GZqU5=6XZ-U{-+=>tdRY_g9S9{RF)RJtV0%|8Gn%zsn?{J+Et%Lc z;$DK-HfE1@f6P_^W83x$d&l7J-sqscd;9i%{X_Opw0E$dGJvDa^9{;p?eTafNr#+O zYPhKjCaW%nn$_Cd?%fsLiMgac(_ETcdrww-k32^r?(@mN{or-^S!g<=UGW^Y=ajVj z$h9Zh{5pU-gtog+P|L&9@>I46<&R7h;v;~CoPy(wVI||_CPgTdEjS_EuGT_)OoXs7 z3600|<06zil7X>;g`AQc#(FiC&6E)~WH~1tCj*U5rVAn@8x{f@8q0z#IMb-*+3-*< zE1MW{#%(p|#*=WulnBXTg~&9zWCP+8sRV*%3*-+RIvpNDm!X=Sm~gNr3niVAsWGg6 z;+ZiFe@)UDV>~`Gl5-9-MGG&+kr77IS+%O?$Nzr~X(of84*YFXh3C->Xr1=xQt7n?m7Yr?J?`^+ki!mUSOSb2A2*YWu$nm}Xe^A@^YCT@B zFyuUuJ!a(#^7jSsD6iB$S$H0(A=|Tp0nfw=80ZC8SC z$MEM6xb3Zo(zLWax6^CS^y@x%v{q9kn})BfL}PVu$6GA3Fx?kI5-Lb_BK{>p_* zfvyf|`=f3q@SunO05tn@i)OX`ZXVcL=+&(S!^G*efrk|T4bi8pbN~PV literal 0 HcmV?d00001 diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeSystem.cmake b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 000000000..2dd42f09b --- /dev/null +++ b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.15.0-140-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-140-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.15.0-140-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.15.0-140-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 000000000..2d6629858 --- /dev/null +++ b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201402L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..25cacfd2c1bfc2dc48e1c258f8065b0fda94dfe1 GIT binary patch literal 20112 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]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.cpp +limits +- +iomanip +- +iostream +- +cstdio +- +cstring +- +cmath +- +StdpSongAbbott.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.h +exceptions.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/exceptions.h +kernel_manager.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/kernel_manager.h +dict.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/dict.h +integerdatum.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/integerdatum.h +doubledatum.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/doubledatum.h +dictutils.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/dictutils.h +numerics.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/numerics.h +universal_data_logger_impl.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/universal_data_logger_impl.h + +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.h +nest_types.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/nest_types.h +event.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/event.h +archiving_node.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/archiving_node.h +ring_buffer.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/ring_buffer.h +connection.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/connection.h +universal_data_logger.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/universal_data_logger.h +recordables_map.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/recordables_map.h +dictutils.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/dictutils.h +exceptions.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/exceptions.h +gsl/gsl_errno.h +- +gsl/gsl_matrix.h +- +gsl/gsl_sf_exp.h +- +gsl/gsl_odeiv2.h +- + +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.cpp +StdpSongAbbottModule.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.h +StdpSongAbbott.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.h +config.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/config.h +connection_manager_impl.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/connection_manager_impl.h +connector_model_impl.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/connector_model_impl.h +dynamicloader.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/dynamicloader.h +exceptions.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/exceptions.h +genericmodel.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/genericmodel.h +genericmodel_impl.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/genericmodel_impl.h +kernel_manager.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/kernel_manager.h +model.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/model.h +model_manager_impl.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/model_manager_impl.h +nestmodule.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/nestmodule.h +target_identifier.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/target_identifier.h +booldatum.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/booldatum.h +integerdatum.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/integerdatum.h +sliexceptions.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/sliexceptions.h +tokenarray.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/tokenarray.h + +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.h +slimodule.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/slimodule.h +slifunction.h +/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/slifunction.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/aggregatedatum.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +allocator.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/allocator.h +datum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/allocator.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +cassert +- +cstdlib +- +string +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/archiving_node.h +deque +- +histentry.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/histentry.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +synaptic_element.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/synaptic_element.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +vector +- +aggregatedatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/aggregatedatum.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +lockptrdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h +tokenarray.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenarray.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/booldatum.h +string +- +allocator.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/allocator.h +genericdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericdatum.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/common_synapse_properties.h +connector_model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +sibling_container.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sibling_container.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/completed_checker.h +cassert +- +cstddef +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +vp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/compose.hpp +sstream +- +string +- +list +- +map +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder.h +map +- +vector +- +lockptr.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptr.h +gslrandomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/gslrandomgen.h +conn_parameter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_parameter.h +gid_collection.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/gid_collection.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder_factory.h +map +- +conn_builder.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +lockptrdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_parameter.h +limits +- +vector +- +randomdev.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomdev.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +exceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/exceptions.h +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection.h +common_synapse_properties.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/common_synapse_properties.h +connection_label.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_label.h +connector_base_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base_impl.h +delay_checker.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/delay_checker.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +nest_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_timeconverter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_timeconverter.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +spikecounter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/spikecounter.h +syn_id_delay.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/syn_id_delay.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h +doubledatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/doubledatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_id.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_label.h +nest.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest.h +nest_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_manager.h +string +- +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +conn_builder.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder.h +connection_id.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_id.h +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +gid_collection.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/gid_collection.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_timeconverter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_timeconverter.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +source_table.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/source_table.h +target_table.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table.h +target_table_devices.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table_devices.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_manager_impl.h +connection_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_manager.h +string +- +conn_builder.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder.h +conn_builder_factory.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder_factory.h +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +target_table_devices_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table_devices_impl.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +cstdlib +- +vector +- +compose.hpp +/home/pedroernesto/anaconda3/build/NEST/include/nest/compose.hpp +sort.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sort.h +vector_util.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vector_util.h +common_synapse_properties.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/common_synapse_properties.h +connection_label.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_label.h +connector_model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +nest_datums.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_datums.h +nest_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +source.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/source.h +spikecounter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/spikecounter.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base_impl.h +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model.h +cmath +- +string +- +numerics.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/numerics.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model_impl.h +connector_model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +compose.hpp +/home/pedroernesto/anaconda3/build/NEST/include/nest/compose.hpp +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +delay_checker.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/delay_checker.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_timeconverter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_timeconverter.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h +slitype.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slitype.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/delay_checker.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +map +- +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +lockptrdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h +algorithm +- +functional +- +string +- +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +doubledatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/doubledatum.h +integerdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/integerdatum.h +namedatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/namedatum.h +tokenutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/doubledatum.h +datum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +numericdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/numericdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/dynamicloader.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +vector +- +slifunction.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h +slimodule.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slimodule.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +cassert +- +cstring +- +algorithm +- +vector +- +lockptr.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptr.h +exceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/exceptions.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +vp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/event_delivery_manager.h +cassert +- +limits +- +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +stopwatch.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/stopwatch.h +completed_checker.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/completed_checker.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +target_table.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table.h +spike_data.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/spike_data.h +vp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/event_delivery_manager_impl.h +event_delivery_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event_delivery_manager.h +connection_manager_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_manager_impl.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/exceptions.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericdatum.h +datum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericmodel.h +new +- +model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/model.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericmodel_impl.h +genericmodel.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericmodel.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +logging_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging_manager.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/gid_collection.h +ostream +- +stdexcept +- +utility +- +vector +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +tokenarray.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenarray.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/growth_curve.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +exceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/exceptions.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/growth_curve_factory.h +growth_curve.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/growth_curve.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/gslrandomgen.h +cassert +- +list +- +string +- +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +random_datums.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/random_datums.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +gsl/gsl_rng.h +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/histentry.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/integerdatum.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +numericdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/numericdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +list +- +typeinfo +- +sliactions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliactions.h +slibuiltins.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slibuiltins.h +slimodule.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slimodule.h +slitype.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slitype.h +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h +tokenstack.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenstack.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/io_manager.h +string +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +connection_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_manager.h +event_delivery_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event_delivery_manager.h +io_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/io_manager.h +logging_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging_manager.h +model_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/model_manager.h +modelrange_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/modelrange_manager.h +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +music_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/music_manager.h +node_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node_manager.h +rng_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/rng_manager.h +simulation_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/simulation_manager.h +sp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sp_manager.h +vp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/librandom_exceptions.h +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/librandom_names.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptr.h +cassert +- +cstddef +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h +lockptr.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptr.h +datum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum_impl.h +lockptrdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging_manager.h +string +- +vector +- +logging.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging.h +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +nest_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/model.h +new +- +string +- +vector +- +allocator.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/allocator.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/model_manager.h +string +- +connector_model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_model.h +genericmodel.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericmodel.h +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +model.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/model.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_timeconverter.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_timeconverter.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +dictutils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictutils.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/model_manager_impl.h +model_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/model_manager.h +compose.hpp +/home/pedroernesto/anaconda3/build/NEST/include/nest/compose.hpp +string_utils.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/string_utils.h +connection_label.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_label.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/modelrange.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/modelrange_manager.h +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +modelrange.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/modelrange.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +unistd.h +- +mpi.h +- +cassert +- +cmath +- +iostream +- +limits +- +numeric +- +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +spike_data.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/spike_data.h +target_data.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_data.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager_impl.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +mpi.h +- +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/music_event_handler.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +music.hh +- +queue +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/music_manager.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +music.hh +- +string +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +music_event_handler.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/music_event_handler.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h +cassert +- +deque +- +iostream +- +map +- +string +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/namedatum.h +string +- +typeinfo +- +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +aggregatedatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/aggregatedatum.h +interpret.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/interpret.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest.h +ostream +- +logging.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/logging.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +nest_datums.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_datums.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_datums.h +connection_id.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_id.h +gid_collection.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/gid_collection.h +nestmodule.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nestmodule.h +aggregatedatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/aggregatedatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +cassert +- +cfloat +- +cmath +- +cstdlib +- +iostream +- +limits +- +string +- +numerics.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/numerics.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_timeconverter.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +cfloat +- +climits +- +cstddef +- +limits +- +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/nestmodule.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +exceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/exceptions.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +slifunction.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h +slimodule.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slimodule.h +slitype.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slitype.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +bitset +- +deque +- +sstream +- +string +- +utility +- +vector +- +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +histentry.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/histentry.h +nest_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_names.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/node_manager.h +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +conn_builder.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/conn_builder.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +sparse_node_array.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sparse_node_array.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/numericdatum.h +allocator.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/allocator.h +genericdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/genericdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/numerics.h +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +cassert +- +cmath +- +limits +- +math.h +- +cmath +- +math.h +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/random_datums.h +random_numbers.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/random_numbers.h +randomdev.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomdev.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +lockptrdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum.h +lockptrdatum_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptrdatum_impl.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/random_numbers.h +string +- +slimodule.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slimodule.h +slitype.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slitype.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomdev.h +cassert +- +librandom_exceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/librandom_exceptions.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +cmath +- +vector +- +lockptr.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/lockptr.h +librandom_names.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/librandom_names.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/recordables_map.h +cassert +- +map +- +string +- +utility +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/ring_buffer.h +list +- +vector +- +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/rng_manager.h +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +randomgen.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/randomgen.h +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sibling_container.h +string +- +vector +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/simulation_manager.h +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliactions.h +slifunction.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/slibuiltins.h +typeinfo +- +slifunction.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h +iostream +- +string +- +vector +- +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/slimodule.h +iostream +- +string +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/slitype.h +iostream +- +typeinfo +- +name.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/name.h +slifunction.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/slifunction.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sort.h +vector +- +cstddef +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/source.h +cassert +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/source_table.h +algorithm +- +cassert +- +iostream +- +map +- +set +- +vector +- +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +source.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/source.h +source_table_position.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/source_table_position.h +vector_util.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vector_util.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/source_table_position.h +cassert +- +iostream +- +vector +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sp_manager.h +vector +- +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +gid_collection.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/gid_collection.h +growth_curve_factory.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/growth_curve_factory.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dict.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dict.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/sparse_node_array.h +cassert +- +map +- +vector +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/spike_data.h +cassert +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/spikecounter.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/static_assert.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/stopwatch.h +sys/time.h +- +cassert +- +iostream +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/string_utils.h +algorithm +- +string +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/syn_id_delay.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/synaptic_element.h +cmath +- +growth_curve.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/growth_curve.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target.h +cassert +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +static_assert.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/static_assert.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_data.h +limits +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +static_assert.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/static_assert.h +target.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_identifier.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +compose.hpp +/home/pedroernesto/anaconda3/build/NEST/include/nest/compose.hpp + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table.h +cassert +- +iostream +- +map +- +vector +- +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +spike_data.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/spike_data.h +target.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target.h +target_data.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_data.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table_devices.h +cassert +- +map +- +vector +- +connection_id.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connection_id.h +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +arraydatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/arraydatum.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table_devices_impl.h +connector_base.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/connector_base.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +model_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/model_manager.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h +target_table_devices.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/target_table_devices.h +vp_manager_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager_impl.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/tarrayobj.h +cstddef +- +typeinfo +- +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h +iomanip +- +iostream +- +string +- +typeinfo +- +vector +- +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +datum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/datum.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenarray.h +algorithm +- +cstddef +- +typeinfo +- +vector +- +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h +tarrayobj.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tarrayobj.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenstack.h +tarrayobj.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tarrayobj.h +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h +tokenarray.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenarray.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/tokenutils.h +string +- +config.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/config.h +namedatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/namedatum.h +sliexceptions.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/sliexceptions.h +token.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/token.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/universal_data_logger.h +vector +- +event.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +recordables_map.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/recordables_map.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/universal_data_logger_impl.h +universal_data_logger.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/universal_data_logger.h +event_delivery_manager_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/event_delivery_manager_impl.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +nest_time.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_time.h +node.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/node.h + +/home/pedroernesto/anaconda3/build/NEST/include/nest/vector_util.h +vector +- +cstddef +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +manager_interface.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/manager_interface.h +nest_types.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/nest_types.h +dictdatum.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/dictdatum.h +omp.h +- + +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager_impl.h +vp_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/vp_manager.h +kernel_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/kernel_manager.h +mpi_manager.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager.h +mpi_manager_impl.h +/home/pedroernesto/anaconda3/build/NEST/include/nest/mpi_manager_impl.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_char.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_complex_double.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_complex_float.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_complex_long_double.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_double.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_float.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_int.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_long.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_long_double.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_short.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_uchar.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_uint.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_ulong.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_block_ushort.h +stdlib.h +- +gsl/gsl_errno.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_check_range.h +stdlib.h +- +gsl/gsl_types.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_complex.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_errno.h +stdio.h +- +errno.h +- +gsl/gsl_types.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_inline.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix.h +gsl/gsl_matrix_complex_long_double.h +- +gsl/gsl_matrix_complex_double.h +- +gsl/gsl_matrix_complex_float.h +- +gsl/gsl_matrix_long_double.h +- +gsl/gsl_matrix_double.h +- +gsl/gsl_matrix_float.h +- +gsl/gsl_matrix_ulong.h +- +gsl/gsl_matrix_long.h +- +gsl/gsl_matrix_uint.h +- +gsl/gsl_matrix_int.h +- +gsl/gsl_matrix_ushort.h +- +gsl/gsl_matrix_short.h +- +gsl/gsl_matrix_uchar.h +- +gsl/gsl_matrix_char.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_char.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_char.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_complex_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_complex_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_complex_float.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_complex_float.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_complex_long_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_complex_long_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_float.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_float.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_int.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_int.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_long.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_long.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_long_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_long_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_short.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_short.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_uchar.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_uchar.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_uint.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_uint.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_ulong.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_ulong.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_matrix_ushort.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_ushort.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_odeiv2.h +stdio.h +- +stdlib.h +- +gsl/gsl_types.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_precision.h +gsl/gsl_types.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_rng.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_sf_exp.h +gsl/gsl_sf_result.h +- +gsl/gsl_precision.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_sf_result.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_types.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_char.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_char.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_complex.h + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_complex_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_double.h +- +gsl/gsl_vector_complex.h +- +gsl/gsl_block_complex_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_complex_float.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_float.h +- +gsl/gsl_vector_complex.h +- +gsl/gsl_block_complex_float.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_complex_long_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_complex.h +- +gsl/gsl_check_range.h +- +gsl/gsl_vector_long_double.h +- +gsl/gsl_vector_complex.h +- +gsl/gsl_block_complex_long_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_float.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_float.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_int.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_int.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_long.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_long.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_long_double.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_long_double.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_short.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_short.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_uchar.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_uchar.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_uint.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_uint.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_ulong.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_ulong.h +- + +/home/pedroernesto/anaconda3/include/gsl/gsl_vector_ushort.h +stdlib.h +- +gsl/gsl_types.h +- +gsl/gsl_errno.h +- +gsl/gsl_inline.h +- +gsl/gsl_check_range.h +- +gsl/gsl_block_ushort.h +- + diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/DependInfo.cmake b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/DependInfo.cmake new file mode 100644 index 000000000..d97d5e289 --- /dev/null +++ b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/DependInfo.cmake @@ -0,0 +1,29 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbott.cpp" "/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbott.cpp.o" + "/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/src/StdpSongAbbottModule.cpp" "/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/TASKS_PyNN-branch-nineml/PyNN-branch-nineml_from-apdavisonGitHub/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbottModule.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "LINKED_MODULE" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/home/pedroernesto/Documents/Project/Code/Models_RepresentationSharing/simulators-source/NEST_install/nest-simulator-2.16.0/conngen" + "/home/pedroernesto/anaconda3/build/NEST/include/nest" + "/home/pedroernesto/anaconda3/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbott.cpp.o b/examples/NEST_nineml_models/StdpSongAbbott/compile/CMakeFiles/StdpSongAbbottModule_lib.dir/StdpSongAbbott.cpp.o new file mode 100644 index 0000000000000000000000000000000000000000..7f0d5222a15c1c53277baaeed043924934c576ce GIT binary patch literal 261864 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