Skip to content

Commit

Permalink
feat: Update problem tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Elscrux committed Sep 3, 2024
1 parent 7ad983b commit 238af3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/landing-page/ProblemChooser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ProblemChooser = (props: GridProps) => (
<ProblemCard
href="solve/MaxCut"
new={false}
tags={["QAOA", "simulated"]}
tags={["QAOA"]}
problemName="MaxCut"
description="For a given undirected, weighted graph, this algorithm finds a cut that is a maximum in some way or another."
/>
Expand All @@ -25,7 +25,7 @@ export const ProblemChooser = (props: GridProps) => (
<ProblemCard
href="solve/FeatureModelAnomaly"
new={false}
tags={["sub-routines"]}
tags={["sub-routines", "SAT"]}
problemName="Feature Model Anomaly"
description="Check whether a given feature model in the UVL format is void or if it has dead features."
/>
Expand All @@ -34,7 +34,7 @@ export const ProblemChooser = (props: GridProps) => (
<ProblemCard
href="solve/QUBO"
new={true}
tags={["QAOA"]}
tags={["QAOA", "Annealing"]}
problemName="QUBO"
description="For a quadratic term with binary decision variables, find the variable assignment minimizing the term."
/>
Expand All @@ -43,7 +43,7 @@ export const ProblemChooser = (props: GridProps) => (
<ProblemCard
href="solve/VehicleRouting"
new={true}
tags={["QAOA", "sub-routines"]}
tags={["sub-routines", "QUBO", "Clustering"]}
problemName="Vehicle Routing"
description="What is the optimal set of routes for a fleet of vehicles to traverse in order to deliver to a given set of customers?"
/>
Expand Down

0 comments on commit 238af3e

Please sign in to comment.