-
Notifications
You must be signed in to change notification settings - Fork 28
Lab Exercise 1
Jiawei Wang edited this page May 27, 2024
·
46 revisions
$tree Lab-Exercise-1
├── GraphAlgorithm.cpp
├── GraphAlgorithm.h
├── test.cpp
├── CMakeLists.txt
* Before coding, please type cd $HOME/Software-Security-Analysis
and git pull
in your terminal to make sure you always have the latest version of the code template before coding.
If git pull
fails due to the conflict with your local changes, type git stash
to store your current code in a temporal branch and type git pull
again. If you want to retrieve your code back, type git stash pop
.
- Implement the following methods of class
GraphAlgorithm
inGraphAlgorithm.cpp
.
Function | Description | Marks |
---|---|---|
reachability | DFS to traverse each program path from src to dst | 50% |
solveWorklist | Constraint solving | 50% |
- Run
ctest -R lab1 -VV
and pass the test without any assertion bytest.cpp
- Upload
GraphAlgorithm.cpp
to UNSWWebCMS
for your submission when you are finished with this lab. Your implementation will be evaluated against our internal tests. You will get the full marks if your code can pass them all. Unfortunately, internal tests are private. Here, we only provided two test cases intest.cpp
. You are encouraged to add more test cases by yourself to validate the correctness of your implementation.
*You will be working on GraphAlgorithm.cpp
only and there is NO need to modify other files under the Lab-Exercise-1 folder
3.1 launch.json
To enable debugging and running, switch your executable by setting the program
and args
fields as described here or follow the below screenshot.
- 'Step over' to the next step of your program
- 'Step in' to the current line of your program
- 'Step out' to mainstream of your program where you stepped in before