conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Cohesive constitutive models.

pub mod elastic;

use crate::constitutive::Constitutive;

/// Required methods for cohesive constitutive models.
pub trait Cohesive
where
    Self: Constitutive,
{
}