MAYBE

Succeeded in reading "/export/starexec/sandbox/benchmark/theBenchmark.ari".
    (CONDITIONTYPE ORIENTED)
    (VAR x)
    (RULES
      a -> b
      f(x) -> c | x == a
    )

No "->="-rules.

Decomposed conditions and removed infeasible rules if possible.
    (CONDITIONTYPE ORIENTED)
    (VAR x)
    (RULES
      a -> b
      f(x) -> c | x == a
    )

(VAR x)
(CONDITION 
f(b) == x, c == x
)

Optimized the infeasibility problem if possible.

(CONDITION 
f(b) == c
)

This is not ultra-RL and deterministic.

The inverted system is ultra-RL and deterministic.


MAYBE