Lines Matching full:libceed
1 # libceed: efficient, extensible discretization
3 …ons](https://github.com/CEED/libCEED/actions/workflows/rust-test-with-style.yml/badge.svg)](https:…
4 [](https://docs.rs/libceed)
6 This crate provides an interface to [libCEED](https://libceed.org), which is a performance-portable…
8 See the [libCEED user manual](https://libceed.org) for details on [interface concepts](https://libc…
10 
14 To call libCEED from a Rust package, the following `Cargo.toml` can be used.
17 libceed = "0.12.0"
20 For a development version of the libCEED Rust bindings, use the following `Cargo.toml`.
23 libceed = { git = "https://github.com/CEED/libCEED", branch = "main" }
27 extern crate libceed;
29 fn main() -> libceed::Result<()> {
30 let ceed = libceed::Ceed::init("/cpu/self/ref");
40 See the [libCEED documentation](https://libceed.org/en/latest/gettingstarted/#backends) for more in…
44 Examples of libCEED can be found in the [libCEED repository](https://github.com/CEED/libCEED) under…
49 To build the [documentation](https://docs.rs/libceed) locally with `katexit` enabled, use
59 The `libceed` crate is developed within the [libCEED repository](https://github.com/CEED/libCEED).
60 See the [contributing guidelines](https://libceed.org/en/latest/CONTRIBUTING/) for details.