params_simulate_selected_state_4.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #ifndef __PARAMS_SIMULATE_SELECTED_STATE_4_H__
  2. #define __PARAMS_SIMULATE_SELECTED_STATE_4_H__
  3. /*
  4. * params_simulate_selected_state_4.h
  5. *
  6. * This file is part of the refactored Izhikevich polychronization model application.
  7. *
  8. * Copyright (C) 2018, Author: G. Trensch
  9. *
  10. * The refactored Izhikevich polychronization model application is free software:
  11. * you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation, either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * It is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this application. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  26. // = P R O G R A M P A R A M E T E R S
  27. // =
  28. // = Reload the 4th selected network state, run the simulation for 60 seconds, and record the network activity data.
  29. // = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  30. #define PARAM_INFO_STRING "RELOAD 4th NETWORK STATE AND SIMULATE W/O STDP"
  31. #define SIM_TIME (int)(60) // in seconds
  32. #define GENERATE_NETWORK_FROM_EXTERNAL_DATA true
  33. #define USE_EXTERNAL_STIMULUS true
  34. #define USE_STDP false
  35. #define INFILE_CONNECTION_MATRIX "../data/conMatrix.dat"
  36. #define INFILE_DELAY_MATRIX "../data/delayMatrix.dat"
  37. #define INFILE_STIMULUS "../data/randomNetworkInput.dat"
  38. #define INFILE_WEIGHT_MATRIX "../data/weightMatrix_after4h.dat"
  39. #define OUTFILE_FIRINGS "../data/firings_after4h.dat"
  40. // can be specified for verification purposes
  41. // #define OUTFILE_CONNECTIONS "../data/conMatrix_initial.dat"
  42. // #define OUTFILE_WEIGHTS_INITIAL "../data/weightMatrix_initial.dat"
  43. // #define OUTFILE_DELAYS "../data/delayMatrix_initial.dat"
  44. // generate connection lists for import into PyNN for SpiNNaker
  45. #define OUTFILE_CON_WEIGHT_DELAY_INITIAL "../data/pythonConWeightDelay_after4h.py"
  46. #endif // __PARAMS_SIMULATE_SELECTED_STATE_4_H__