-
Notifications
You must be signed in to change notification settings - Fork 140
Assignment 2
guanqin-123 edited this page Mar 22, 2021
·
33 revisions
$tree Assignment-2
├── Assignment-2.cpp
├── Assignment-2.h
├── CMakeLists.txt
├── Test2.h
└── testcase
├── bc
│ ├── test1.ll
│ └── test2.ll
├── dot
│ ├── icfg_test1.dot
│ └── icfg_test2.dot
└── src
├── test1.c
└── test2.c
* 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.
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
DFSmethods of classICFGTraversalinAssignment-2.cpp - Pass the test without any assertion by
Test2.cpp - Submit
Assignment-2.cppto canvas
*You will be working on Assignment-2.cpp only and there is NO need to modify other files under the Assignment-2 folder
* Some useful SVF CPP API
Please refer to here