X Tutup
Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

This is WALA program analysis support for Project CodeNet

Setup

run ./build.sh to download WALA and build the analysis support

Analysis graphs for GNNs

build graph files for GNN using the SDG

java -cp target/AnalysisGraphGenerator-0.0.1-SNAPSHOT.jar -DoutputDir=<dir for GNN files> -DgraphLabel=<graph label> -DSDG=true com.ibm.wala.codeNet.WalaToGNNFiles -sourceDir <jav dir or file> -mainClass L<main class name>

build graph files for GNN using the IPCFG

java -cp target/AnalysisGraphGenerator-0.0.1-SNAPSHOT.jar -DoutputDir=<dir for GNN files> -DgraphLabel=<graph label> -DSDG=true com.ibm.wala.codeNet.WalaToGNNFiles -sourceDir <jav dir or file> -mainClass L<main class name>

X Tutup