Update documentation
This commit is contained in:
parent
54997dd7b3
commit
9b9232dbc9
17
README.md
17
README.md
|
@ -61,15 +61,22 @@ the data subgraph must also exist in the query graph.
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
Add `vf2` to your dependencies in **Cargo.toml**.
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[dependencies]
|
||||||
|
vf2 = "1.0"
|
||||||
|
```
|
||||||
|
|
||||||
Create your query and data graphs with [petgraph](https://github.com/petgraph/petgraph)
|
Create your query and data graphs with [petgraph](https://github.com/petgraph/petgraph)
|
||||||
or any library that implements the `Graph` trait. Then, call one of the following
|
or any library that implements the `Graph` trait. Then, call one of the following
|
||||||
functions based on the problem type.
|
functions based on the problem type.
|
||||||
|
|
||||||
| Problem type | Call |
|
| Problem type | Call |
|
||||||
|-------------------------------|---------------------------------|
|
|-------------------------------|--------------------------------------|
|
||||||
| Graph isomorphisms | `isomorphisms` |
|
| Graph isomorphisms | `vf2::isomorphisms` |
|
||||||
| Subgraph isomorphisms | `subgraph_isomorphisms` |
|
| Subgraph isomorphisms | `vf2::subgraph_isomorphisms` |
|
||||||
| Induced subgraph isomorphisms | `induced_subgraph_isomorphisms` |
|
| Induced subgraph isomorphisms | `vf2::induced_subgraph_isomorphisms` |
|
||||||
|
|
||||||
These return a `Vf2Builder` with the algorithm configured.
|
These return a `Vf2Builder` with the algorithm configured.
|
||||||
Next, call one of the following on the builder to enumerate the isomorphisms.
|
Next, call one of the following on the builder to enumerate the isomorphisms.
|
||||||
|
|
17
src/lib.rs
17
src/lib.rs
|
@ -9,15 +9,22 @@
|
||||||
//!
|
//!
|
||||||
//! # Usage
|
//! # Usage
|
||||||
//!
|
//!
|
||||||
|
//! Add `vf2` to your dependencies in **Cargo.toml**.
|
||||||
|
//!
|
||||||
|
//! ```toml
|
||||||
|
//! [dependencies]
|
||||||
|
//! vf2 = "1.0"
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
//! Create your query and data graphs with [petgraph](https://github.com/petgraph/petgraph)
|
//! Create your query and data graphs with [petgraph](https://github.com/petgraph/petgraph)
|
||||||
//! or any library that implements the [`Graph`] trait. Then, call one of the following
|
//! or any library that implements the [`Graph`] trait. Then, call one of the following
|
||||||
//! functions based on the problem type.
|
//! functions based on the problem type.
|
||||||
//!
|
//!
|
||||||
//! | Problem type | Call |
|
//! | Problem type | Call |
|
||||||
//! |-------------------------------|-----------------------------------|
|
//! |-------------------------------|-----------------------------------------------------------------------|
|
||||||
//! | Graph isomorphisms | [`isomorphisms`] |
|
//! | Graph isomorphisms | [`vf2::isomorphisms`](isomorphisms) |
|
||||||
//! | Subgraph isomorphisms | [`subgraph_isomorphisms`] |
|
//! | Subgraph isomorphisms | [`vf2::subgraph_isomorphisms`](subgraph_isomorphisms) |
|
||||||
//! | Induced subgraph isomorphisms | [`induced_subgraph_isomorphisms`] |
|
//! | Induced subgraph isomorphisms | [`vf2::induced_subgraph_isomorphisms`](induced_subgraph_isomorphisms) |
|
||||||
//!
|
//!
|
||||||
//! \
|
//! \
|
||||||
//! These return a [`Vf2Builder`] with the algorithm configured.
|
//! These return a [`Vf2Builder`] with the algorithm configured.
|
||||||
|
|
Loading…
Reference in New Issue