Skip to content

Commit d37e5e1

Browse files
Merge pull request #13 from LIHPC-Computational-Geometry/fix-unsound
Remove numbering feature and add unchecked constructors. Exceptionally this is a non-linear merge as that branch was old and I did not want to modify original commits by rebasing them.
2 parents 98befbf + e3e8664 commit d37e5e1

File tree

3 files changed

+438
-52
lines changed

3 files changed

+438
-52
lines changed

examples/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn main() -> Result<(), metis::Error> {
2121
9, 13,
2222
];
2323
let mut part = vec![0x00; 15];
24-
Graph::new(1, 2, xadj, adjncy).part_recursive(&mut part)?;
24+
Graph::new(1, 2, xadj, adjncy)?.part_recursive(&mut part)?;
2525
println!("{:?}", part);
2626

2727
Ok(())

0 commit comments

Comments
 (0)