use_ -> make_

This commit is contained in:
Artur Meski
2018-10-13 21:03:27 +01:00
parent e4ab5999aa
commit e098bcb42b
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ void rsin_driver::initialise(void)
opts = nullptr;
use_ctx_aut = false;
use_concentrations = false;
use_progressive = false;
make_progressive = false;
}
rsin_driver::~rsin_driver ()
@@ -109,7 +109,7 @@ void rsin_driver::useContextAutomaton(void)
void rsin_driver::makeProgressive(void)
{
use_progressive = true;
make_progressive = true;
if (use_ctx_aut)
{
getReactionSystem()->ctxAutEnableProgressiveClosure();

View File

@@ -35,7 +35,7 @@ class rsin_driver
// options in configuration file:
bool use_ctx_aut;
bool use_concentrations;
bool use_progressive;
bool make_progressive;
// Handling the scanner
void scan_begin();