Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
More docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AOx0 committed Apr 26, 2023
1 parent be1b9eb commit 3dc7423
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,11 @@

Graph searching algorithms

## Testing

The project does not get executed from a terminal, it is a WASM web page with an UI for performing the various operations.

To test the project go ahead to https://aox0.github.io/aigraph1. Docs are also available in the web site, just click on the "docs/" navigation
link.

<img width="1376" alt="Screenshot 2023-04-20 at 12 25 56 a m" src="https://user-images.githubusercontent.com/50227494/233276578-7f18445f-6b4b-4b4c-a51d-9651f44198fb.png">
6 changes: 3 additions & 3 deletions graph/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use walkers::{Walker, WalkerState};

/// Random number generator based on the [`getrandom`](../getrandom/index.html) crate.
/// You may want to take a look at:
/// - The random number generator (rng) instantiator [`rrand::get_rng`](./rrand/fn.get_rng.html)
/// - The random number generator (rng) instantiator [`rrand::get_rng`](./fn.get_rng.html)
pub mod rrand;

/// Implementation of the [`Step`](./step/struct.Step.html) struct for traversal representation.
Expand All @@ -62,8 +62,8 @@ pub mod step;
/// for various traversal algorithms.
///
/// You may want to take a look at:
/// - The [`Walker<Ix>`](./walkers/trait.Walker.html) trait
/// - The [`WalkerState`](./walkers/enum.WalkerState.html) enumerator
/// - The [`Walker<Ix>`](./trait.Walker.html) trait
/// - The [`WalkerState`](./enum.WalkerState.html) enumerator
/// - Each of the strategies implementation their corresponding modules.
pub mod walkers;

Expand Down

0 comments on commit 3dc7423

Please sign in to comment.