(
&self,
f: &mut fmt::Formatter,
from_id: usize,
to_id: usize,
)
| 92 | } |
| 93 | |
| 94 | pub fn add_edge( |
| 95 | &self, |
| 96 | f: &mut fmt::Formatter, |
| 97 | from_id: usize, |
| 98 | to_id: usize, |
| 99 | ) -> fmt::Result { |
| 100 | writeln!( |
| 101 | f, |
| 102 | " {from_id} -> {to_id} [arrowhead=none, arrowtail=normal, dir=back]" |
| 103 | ) |
| 104 | } |
| 105 | } |