numberlab 0.1.9

A collection of numerical algorithms
Documentation
1
2
3
4
5
6
use num::Num;
use std::fmt::Display;

pub trait GraphWeightTrait: Num + Copy + Clone + Display + PartialOrd {}

impl<W: Num + Copy + Clone + Display + PartialOrd> GraphWeightTrait for W {}