Skip to content

Commit 2362652

Browse files
authored
Update issue templates
1 parent 602b14b commit 2362652

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/problem.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Problem
3+
about: For contributors to propose a new model problem
4+
title: "[Model] The problem you want to introduce to this repo"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## Description
11+
[Problem name, e.g. Maximum Independent Set]
12+
13+
[Description, with clear annotation of information source. e.g.
14+
Given a Graph G=(V,E), an independent set of vertices, i.e. a subset of V such that no two vertices in it are joined by an edge in E. To goal is to find the the independent set with maximum cardinality.
15+
16+
Ref: https://www.csc.kth.se/~viggo/wwwcompendium/node34.html
17+
]
18+
19+
## Schema
20+
[JSON Schema description, e.g.
21+
Type name: MaximumIndependentSet
22+
Vartiants: Different graph topolofy, weighted or unweighted (implemented as type parameters)
23+
Fields:
24+
- `graph`, a graph description
25+
- `weights`, a vector of numbers, for weights on vertices
26+
]

0 commit comments

Comments
 (0)