python graph_generator.py --vertices 9999
gcc -o3 -o graph.exe graph.cpp -lstdc++ -fopenmporg++ -o graph.exe graph.cpp -fopenmp
./graph.exe ./graph[xxx].txt ([xxx] is the number of vertices)
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --ntasks=8
#SBATCH --time=00:10:00
#SBATCH --partition=physical
#SBATCH --output=1n1c.out
# Load required modules
module load GCC/4.9.2
# Compile with OpenMP directives
gcc -o3 -o graph.exe graph.cpp -lstdc++ -fopenmp
# Export with the number of threads desired\
# export OMP_NUM_THREADS=8
# Execute the programs\
graph.exe graph[xxx].txt