conspire 0.7.1

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "netcdf")]
use crate::{
    geometry::mesh::{test::mesh, write::Output},
    io::Write,
    math::test::TestError,
};

#[cfg(feature = "netcdf")]
use std::path::Path;

#[test]
#[cfg(feature = "netcdf")]
fn exodus() -> Result<(), TestError> {
    Ok(mesh().write(Output::Exodus(Path::new("target/foo.exo")))?)
}