Skip to content

Commit

Permalink
Merge pull request #125 from ProvideQ/fix/solver-description-qrisp
Browse files Browse the repository at this point in the history
fix: implement required method from ProblemSolver Interface
  • Loading branch information
koalamitice authored Jan 21, 2025
2 parents 0609960 + e01b66a commit 1aa524e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ public String getName() {
return "Grover-Search (Qrisp)";
}

@Override
public String getDescription() {
return "Solves SAT problems using QRISP as a quantum Grover-search problem.";
}

@Override
public Mono<Solution<DimacsCnfSolution>> solve(
String input,
Expand Down

0 comments on commit 1aa524e

Please sign in to comment.