Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 587 Bytes

File metadata and controls

28 lines (23 loc) · 587 Bytes

Axion-Strings

How to compile/run:

Uses cmake to compile. To compile/build the project:

  1. Create build directory in project root
mkdir build
  1. Generate build system
cmake -S . -B build
  1. Build / compile
cmake --build build
  1. Then to run the simulation
./build/src/main default.param

How to add new parameters to the parameter file:

  1. add parameter to the parameters struct in common/common.h.
  2. add entry to the p_list array in parameters_to_read() in common/read_parameter_file.cpp
  3. add parameter to parameter file.