#
#
#                 Running ProjClos
#
#
#------------------------------------------------------------------------


#-----------------------------------------------------
# Selecting input file (with .ri suffix)
RI_IN=${DIR_PROJCLOS}/data/mougel.ri

#-----------------------------------------------------
# Choosing Locale Vs Global graph abstraction
PROG_VERSION=Local    # alternativelu PROG_VERSION=Global

#-----------------------------------------------------
# Choosing minimal support for CORON frequent closed mining
CORON_MIN_SUP=4

#-----------------------------------------------------
# Choosing the threshold of minimal degree the object
# should have in the abstration
MIN_DEG=0

#-----------------------------------------------------
# Choosing the threshold of minimal size of the connected
# component the object should belong in the abstract graph
MIN_CC=0

#-----------------------------------------------------
# Choosing the threshold of minimal size of the connected
# component the object should belong in the abstract graph
# of triangles
MIN_TER_CC=4

#-----------------------------------------------------
# Defining the output file path (should have the .abs suffix)
ABS_OUT=${DIR_PROJCLOS}/data/mougel.abs


#-----------------------------------------------------
# Running the code
#-----------------------------------------------------

./proj_clos.sh      $RI_IN         \
                    $PROG_VERSION  \
                    $CORON_MIN_SUP \
                    $MIN_DEG       \
                    $MIN_CC        \
                    $MIN_TER_CC    \
                    $ABS_OUT




