Reasoner Conversion Problems:
- by Annalyne
I have this code right here in Java and I wanted to translate it in C++, but I had some problems going: this is the java code:
import java.io.*;
import java.util.*;
public class ClueReasoner
{
private int numPlayers;
private int playerNum;
private int numCards;
private SATSolver solver;
private String caseFile = "cf";
private String[]…