1use std::io::{Write, Error}; 2use std::result::Result; 3use core::graph::*; 4 5pub fn write_matlab(fmt: &mut Write, graph: & ComputeGraph) -> Result<(),Error>{ 6 write!(fmt, "{}", graph.nodes.len()) 7}