* @return a list of facts answering the input query
* @see camembert.knowledge.reasoner.getAllAnswers
*/
protected List<GroundFact> getAllAnswers(ProofContext context, String ... args)
{
Fact question = makeQuery(args);
return reasoner_.getAllAnswers(question, context);
}