Skip to content

Assignment 1

Yulei Sui edited this page Feb 22, 2021 · 44 revisions

Assignment-1 folder layout

$tree Assignment-1
├── Assignment-1.cpp
├── Assignment-1.h
├── Test1.h
├── CMakeLists.txt

* Before coding, please type cd $HOME/SVF-Teaching and git pull in your terminal to make sure you always have the latest version of the code template before each assignment.

Finish the code task in Assignment-1.cpp

  1. Implement printPath and DFS methods of class GraphTraversal
  2. Pass the test without any assertion by Test1.h

Configuration

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

2. debug in your code

*When you finish your code and run, there should not be any assertion triggered by Test1.h. If there is an abortion, you will need to debug your implementation and find any bugs.

Step1: Set the break point to the abortion test function in the beginning and press the 'debug' button

Step2: 'Step over' /'Step in' / 'Step out'

  • 'Step over' to the next step of your program
  • 'Step in' to the current line of your program
  • 'Step out' to main stream of your program where you stepped in before

Step3: Watch the value of an variable you are interested in. Dig it up and fix the bug.

Requirements:

  1. Compress the Assignment-1.cpp && Assignment-1.h in the current file

tar -cvf Assignment-1.tar Assignment-1

  1. Fetch the compressed file from the docker container

docker cp $containerid:/home/SVF-tools/SVF-teaching/Assignment-1.tar $Your_local_dir

  1. Post the file to canvas
Clone this wiki locally