Skip to content

Commit 7cdadc1

Browse files
committed
Updated README and compiled the CLI for Linux
1 parent cd0a191 commit 7cdadc1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

347 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ relsys -m simulation -arr arrivalRates.txt -ser serviceTimes.txt -cap capacity.t
224224

225225
### Windows Defender blocking the EXE-file
226226

227-
If you are a Windows user, you may encounter an issue where the Microsoft Defender SmartScreen blocks the EXE-file when you attempt to run the application. In this case, you will need to turn off SmartScreen to run the application. Alternatively, you can compile the EXE-file by downloading the source code from the `RelSys/` directory, removing the `PythonWrapper.cpp` file, and running the command `g++ -O3 *.cpp -o relsys.exe`. This will enable you to run the application without any issues caused by SmartScreen.
227+
If you are a Windows user, you may encounter an issue where the Microsoft Defender SmartScreen blocks the EXE-file when you attempt to run the application. In this case, you will need to turn off SmartScreen to run the application. Alternatively, you can compile the EXE-file by downloading the source code from the `RelSys/` directory, removing the `PythonWrapper.cpp` file, and running the command `g++ -O3 -std=c++11 *.cpp -o relsys.exe`. This will enable you to run the application without any issues caused by SmartScreen.
228228

229229
## C++
230230

@@ -304,7 +304,7 @@ The following returns the resulting occupancy distributions and shortage probabi
304304
}
305305
```
306306

307-
The model is finally evaluated by compiling the C++ program. If you have cloned the repository to your computer, remove the file `PythonWrapper.cpp`, and run `g++ -O3 *.cpp -o eval` in your terminal. Run the program with `./eval`.
307+
The model is finally evaluated by compiling the C++ program. If you have cloned the repository to your computer, remove the file `PythonWrapper.cpp`, and run `g++ -O3 -std=c++11 *.cpp -o relsys.exe` in your terminal. Run the program with `./relsys.exe`.
308308

309309
### The complete example
310310

0 commit comments

Comments
 (0)