I am new to ILOG and I want to know, what does this statement mean:
IlrContext() from ?context;
I do not see "context" defined as variable in a sample project in my work space. Is this an implicit variable that is defined in ILOG?
I am new to ILOG and I want to know, what does this statement mean:
IlrContext() from ?context;
I do not see "context" defined as variable in a sample project in my work space. Is this an implicit variable that is defined in ILOG?
IlrContext
is the base class of all the execution contexts. Rules can be executed only within an execution context.
An IlrContext
instance provide all context data to the engine (rulesets
, variables
, parameters
etc.)