Skip to content

Commit 539f551

Browse files
committed
WIP
1 parent 82d93d3 commit 539f551

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</div>
88
<br>
99

10-
# Graphina
10+
## Graphina
1111

1212
[![Tests](https://img.shields.io/github/actions/workflow/status/habedi/graphina/tests.yml?label=tests&style=popout-square&logo=github)](https://github.com/habedi/graphina/actions/workflows/tests.yml)
1313
[![Lint](https://img.shields.io/github/actions/workflow/status/habedi/graphina/lint.yml?label=lints&style=popout-square&logo=github)](https://github.com/habedi/graphina/actions/workflows/lint.yml)
@@ -37,7 +37,7 @@ Check out [pygraphina](pygraphina/) directory for more details.
3737
> Graphina is in the early stages of development, so breaking changes may occur.
3838
> Bugs and API inconsistencies are also expected, and the algorithms may not yet be optimized for performance.
3939
40-
## Structure
40+
### Structure
4141

4242
Graphina consists of two main parts: a *core library* and *extensions*.
4343
The core library provides the basic data structures and algorithms for working with graphs.
@@ -46,7 +46,7 @@ community detection, link prediction, and calculating node and edge centrality s
4646

4747
The extensions are independent of each other. However, they depend on the core library for the basic graph operations.
4848

49-
### Graphina Core
49+
#### Graphina Core
5050

5151
| Module | Feature/Algorithm | Status | Notes |
5252
|------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------|---------------------------------------------------|
@@ -58,7 +58,7 @@ The extensions are independent of each other. However, they depend on the core l
5858
| [**MST**](src/core/mst.rs) | <ul><li>Prim’s algorithm</li><li>Kruskal’s algorithm</li><li>Borůvka’s algorithm</li></ul> | Tested | Minimum spanning tree algorithms |
5959
| [**Traversal**](src/core/traversal.rs) | <ul><li>Breadth-first search (BFS)</li><li>Depth-first search (DFS)</li><li>Iterative deepening DFS</li><li>Bidirectional search</li></ul> | Tested | Graph traversal algorithms |
6060

61-
### Extensions
61+
#### Extensions
6262

6363
| Module | Feature/Algorithm | Status | Notes |
6464
|------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------|-----------------------------------------------------------|
@@ -71,30 +71,30 @@ The extensions are independent of each other. However, they depend on the core l
7171
> Status shows whether the module is `Tested` and `Benchmarked`.
7272
> Empty status means the module is implemented but not tested and benchmarked yet.
7373
74-
## Installation
74+
### Installation
7575

7676
```
7777
cargo add graphina
7878
```
7979

8080
*Graphina requires Rust 1.83 or later.*
8181

82-
## Documentation
82+
### Documentation
8383

8484
See the [docs](docs/README.md) for the latest documentation.
8585

8686
Check out the [docs.rs/graphina](https://docs.rs/graphina) for the latest API documentation.
8787

88-
## Contributing
88+
### Contributing
8989

9090
See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to make a contribution.
9191

92-
## Logo
92+
### Logo
9393

9494
The mascot is named "Graphina the Dinosaur" who thinks she's a dragon.
95-
The logo was created using ComfyUI and a Flex Schnell v2 model.
95+
The logo was created using Gimp, ComfyUI, and a Flex Schnell v2 model.
9696

97-
## Licensing
97+
### Licensing
9898

9999
Graphina is licensed under either of these:
100100

logo.png

Lines changed: 2 additions & 2 deletions
Loading

pygraphina/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyGraphina
1+
## PyGraphina
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
44
[![Python version](https://img.shields.io/badge/Python-%3E=3.9-blue)](https://github.com/habedi/graphina)
@@ -7,12 +7,12 @@
77

88
PyGraphina Python library allows users to use [Graphina](https://github.com/habedi/graphina) in Python.
99

10-
## Installation
10+
### Installation
1111

1212
```bash
1313
pip install pygraphina
1414
```
1515

16-
## License
16+
### License
1717

1818
PyGraphina is licensed under the [MIT License](LICENSE).

0 commit comments

Comments
 (0)