Skip to content

Commit

Permalink
Remove numbering feature and add unchecked constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
hhirtz committed Jul 24, 2023
1 parent f278464 commit 6ec870f
Show file tree
Hide file tree
Showing 3 changed files with 295 additions and 19 deletions.
2 changes: 1 addition & 1 deletion examples/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fn main() -> Result<(), metis::Error> {
9, 13,
];
let mut part = vec![0x00; 15];
Graph::new(1, 2, xadj, adjncy).part_recursive(&mut part)?;
Graph::new(1, 2, xadj, adjncy)?.part_recursive(&mut part)?;
println!("{:?}", part);

Ok(())
Expand Down
Loading

0 comments on commit 6ec870f

Please sign in to comment.