===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-irace-3.4.1/README.md-220-
r-cran-irace-3.4.1/README.md:221:    where `$IRACE_HOME` is the path to the installation directory of
r-cran-irace-3.4.1/README.md-222-    `irace`. It can be obtained by doing:
##############################################
r-cran-irace-3.4.1/README.md-240-   
r-cran-irace-3.4.1/README.md:241:    There are examples in `$IRACE_HOME/examples/`.
r-cran-irace-3.4.1/README.md-242-
##############################################
r-cran-irace-3.4.1/vignettes/NEWS.txt-16- * Initial configurations may also be provided directly in R using
r-cran-irace-3.4.1/vignettes/NEWS.txt:17:   `scenario$initConfigurations`
r-cran-irace-3.4.1/vignettes/NEWS.txt-18-                                                   (Manuel López-Ibáñez)
##############################################
r-cran-irace-3.4.1/R/irace2pyimp.R-19-# To see usage: irace2pyimp --help
r-cran-irace-3.4.1/R/irace2pyimp.R:20:# See examples in `$IRACE_HOME/inst/examples/irace2pyimp/acotsp/run.sh`
r-cran-irace-3.4.1/R/irace2pyimp.R:21:#          and in `$IRACE_HOME/inst/examples/irace2pyimp/002-TemplateDesign/run.sh`
r-cran-irace-3.4.1/R/irace2pyimp.R-22-#
##############################################
r-cran-irace-3.4.1/R/readParameters.R-510-    if (is.null(x)) return ("")
r-cran-irace-3.4.1/R/readParameters.R:511:    matches <- regmatches(x, regexec("([^[:space:]]+)[[:space:]]+in[[:space:]]+\\{([^}]+)\\}[[:space:]]*$", x, perl=TRUE))[[1]]
r-cran-irace-3.4.1/R/readParameters.R-512-    if (length(matches) == 0) irace.error("unknown condition ", x)
##############################################
r-cran-irace-3.4.1/R/readParameters.R-526-    # match a parameter
r-cran-irace-3.4.1/R/readParameters.R:527:    matches <- regmatches(line, regexec("^[[:space:]]*([^[:space:]]+)[[:space:]]+\\[([^,]+),[[:space:]]*([^]]+)\\][[:space:]]*\\[[^]]+\\](i?l?i?)(.*)$", line, perl=TRUE))[[1]]
r-cran-irace-3.4.1/R/readParameters.R-528-    if (length(matches) > 0) {
##############################################
r-cran-irace-3.4.1/R/readParameters.R-537-    }
r-cran-irace-3.4.1/R/readParameters.R:538:    matches <- regmatches(line, regexec("^[[:space:]]*([^[:space:]]+)[[:space:]]+\\{([^}]+)\\}[[:space:]]*\\[[^]]+\\](.*)$", line, perl=TRUE))[[1]]
r-cran-irace-3.4.1/R/readParameters.R-539-    if (length(matches) > 0) {
##############################################
r-cran-irace-3.4.1/R/race.R-481-       # assuming candidates 1 and 2 are elite maxbound=80
r-cran-irace-3.4.1/R/race.R:482:       # executionTime <- matrix(c(0.010,0.0170,0.010, 24,28,27, 0.010,0.017,NA), 
r-cran-irace-3.4.1/R/race.R-483-       #        byrow=TRUE, ncol=3, nrow=3, dimnames=list(c(1,2,3),c(1,2,3)))
##############################################
r-cran-irace-3.4.1/R/race.R-782-          # LESLIE:Removing this because now is ponitless because of the elite candidates previos
r-cran-irace-3.4.1/R/race.R:783:          # execution
r-cran-irace-3.4.1/R/race.R-784-          # || (current.task > elitistNewInstances && nbAlive == 1)))) {
##############################################
r-cran-irace-3.4.1/R/race.R-836-  
r-cran-irace-3.4.1/R/race.R:837:    # Execution bounds calculation (capping only)
r-cran-irace-3.4.1/R/race.R-838-    final.bounds <- elite.bound <- NULL
##############################################
r-cran-irace-3.4.1/R/race.R-1095-  # and there one elite configuration that gets discarded in the new instances
r-cran-irace-3.4.1/R/race.R:1096:  # execution the race is finished with no executions.
r-cran-irace-3.4.1/R/race.R-1097-  # FIXME: we should handle this better, maybe allowing irace to handle no elite 
##############################################
r-cran-irace-3.4.1/NEWS.md-16- * Initial configurations may also be provided directly in R using
r-cran-irace-3.4.1/NEWS.md:17:   `scenario$initConfigurations`
r-cran-irace-3.4.1/NEWS.md-18-                                                   (Manuel López-Ibáñez)
##############################################
r-cran-irace-3.4.1/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-irace-3.4.1/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-irace-3.4.1/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM