Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class DeutschClassicalSolver : ISolver<DEUTSCH> {
// --- Fields ---
public string solverName {get;} = "Deutsch Problem Classical Solver";
public string solverDefinition { get; } = "This is a classical solver for the Deutsch Problem which simply tries both inputs to f(x) and computes whether they are the same (constant) or different (balanced)";
public string source {get;} = "";
public string source { get; } = "Deutsch, David. 1985. Quantum theory, the Church-Turing principle and the universal quantum computer. Proc. R. Soc. Lond. A40097-117";
public string[] contributors {get;} = { "Jason L. Wright" };

// --- Methods Including Constructors ---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class DeutschClassicalVerifier : IVerifier<DEUTSCH> {
// --- Fields ---
public string verifierName {get;} = "Deutsch Classical Verifier";
public string verifierDefinition { get; } = "Verify that a proposed solution correctly identifies whether the given function is constant or balanced by trying both possible inputs to the hidden function.";
public string source {get;} = " ";
public string source { get; } = "Deutsch, David. 1985. Quantum theory, the Church-Turing principle and the universal quantum computer. Proc. R. Soc. Lond. A40097-117";
public string[] contributors {get;} = { "Jason L. Wright" };
private string _certificate = "";

Expand Down