conspire 0.7.7

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{
    geometry::mesh::{
        test::mesh,
        write::{Output, exodus::ExodusFormat},
    },
    io::Write,
    math::assert::AssertionError,
};

use std::path::Path;

#[test]
fn exodus() -> Result<(), AssertionError> {
    Ok(mesh().write(Output::Exodus(ExodusFormat::Classic(Path::new(
        "target/foo.exo",
    ))))?)
}