#!/bin/bash
#
# gfortran's compile command for C-GRASP-GENCAN 
#
PROB=$1

echo -n Compiling C-GRASP-GENCAN with gfortran... 
gfortran -O4 -w -ffixed-form -fimplicit-none c-grasp.f algencan.f emath.f "$PROB" -o go
echo [OK]

