Skip to content

Commit

Permalink
feat: implement problem mask for QUBO
Browse files Browse the repository at this point in the history
  • Loading branch information
schweikart committed Sep 28, 2023
1 parent 9ca8c65 commit 71f5f2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/landing-page/ProblemCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ProblemCard = (props: ProblemCardProps) => {
<Box display="flex" alignItems="baseline">
{props.new && (
<Badge borderRadius="full" px="2" colorScheme="blue" mr="2">
New
New!
</Badge>
)}
<Box
Expand Down
11 changes: 10 additions & 1 deletion src/components/landing-page/ProblemChooser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,16 @@ export const ProblemChooser = (props: GridProps) => (
new={false}
tags={["sub-routines"]}
problemName="Feature Model Anomaly"
description="For a given feature model, check for Void Feature Model, Dead Features, False-Optional Features, Redundant Constraints.."
description="Check whether a given feature model in the UVL format is void or if it has dead features."
/>
</GridItem>
<GridItem>
<ProblemCard
href="solve/QUBO"
new={true}
tags={["QAOA"]}
problemName="QUBO"
description="For a quadratic term with binary decision variables, find the variable assignment minimizing the term."
/>
</GridItem>
</Grid>
Expand Down

0 comments on commit 71f5f2c

Please sign in to comment.