Beispiel #1
0
 /// <summary>
 /// Returns whether or not the question does not support the given solver type.
 /// </summary>
 public bool UnsupportedSolver(QuestionSolverType solverType)
 => (SolverTypes & solverType) == 0;
Beispiel #2
0
 /// <summary>
 /// Returns whether or not the question supports the given solver type.
 /// </summary>
 public bool SupportedSolver(QuestionSolverType solverType)
 => (SolverTypes & solverType) == solverType;