-
Notifications
You must be signed in to change notification settings - Fork 23
Assignment 1
Yulei Sui edited this page Feb 20, 2022
·
11 revisions
$tree Assignment-1
├── Assignment-1.cpp
├── Assignment-1.h
├── Test1.cpp
├── CMakeLists.txt
* Before coding, please type cd $HOME/Teaching-Software-Verification and git pull in your terminal to make sure you always have the latest version of the code template before each assignment.
Make sure to switch your program to assign-1 before coding.

- Implement methods
printPathandDFSof classGraphTraversalinAssignment-1.cpp. - Pass the test without any assertion by
Test1.cpp - Submit
Assignment-1.cppto canvas. Your implementation will be evaluated against our 10 internal tests. You will get the full marks if your code can pass them all. Unfortunately, our internal tests are publicly available. Here, we only provided one test case inTest1.cpp. You are encouraged to add more test cases by yourself to validate the correctness of your implementation.
*You will be working on Assignment-1.cpp only and there is NO need to modify other files under the Assignment-1 folder
1. launch.json
You need to set the "program" to be the executable file of Assignment 1, i.e., "${workspaceFolder}/bin/assign-1" in
launch.json in order to run and debug


- '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
