package player.tasks; import gen.*; /** Solve the provided Problem instances ASAP */ public class SolveTask { /** Do the actual solving of Problem instances */ public SolveTrans solve(ProvidedChallenge ch){ return null; } }