Ejemplo n.º 1
0
 void CMPI_Wql2Dnf::_gatherConj(
     Array<CMPI_stack_el>& stk,
     CMPI_stack_el sel)
 {
     _gather(stk, sel, false);
 }
Ejemplo n.º 2
0
void WQLCompile::_gatherConj(Array<stack_el>& stk, stack_el sel)
{
	_gather(stk, sel, false);
}
Ejemplo n.º 3
0
 void CMPI_Wql2Dnf::_gatherDisj(Array<CMPI_stack_el>& stk)
 {
     _gather(stk, CMPI_stack_el(0,true), true);
 }
Ejemplo n.º 4
0
void WQLCompile::_gatherDisj(Array<stack_el>& stk)
{
	_gather(stk, stack_el(0, TERMINAL_HEAP), true);
}