Metadata-Version: 2.4
Name: re_mocd
Version: 0.2.3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Rust
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
License-File: LICENSE
Summary: Rapid multi-objective community detection with parallel computation and caching to efficiently handle large-scale graphs. With networkx compatibilityy
Keywords: rust,python,community detection,multi-objective optimization,graph analysis
Author: Guilherme Santos
Author-email: Guilherme Santos <gs.oliveira.dev@gmail.com>
License: GPL-3.0-or-later
Description-Content-Type: text/markdown
Project-URL: Repository, https://github.com/0l1ve1r4/re_mocd
Project-URL: Issues, https://github.com/0l1ve1r4/re_mocd/issues

<div align="center">
  <img src="res/logo.png" alt="logo" style="width: 40%;"> 

   <strong>rapid evolutionary multi-objective community detection algorithms</strong>

![PyPI - Downloads](https://img.shields.io/pypi/dm/re_mocd)
[![PyPI - Stats](https://img.shields.io/badge/More%20Info-F58025?logo=PyPi)](https://pypistats.org/packages/re_mocd)
[![Netlify Status](https://api.netlify.com/api/v1/badges/3338fd99-1581-4db4-bf2c-76f68d313e17/deploy-status)](https://app.netlify.com/sites/remocd/deploys)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/0l1ve1r4/re-mocd/.github%2Fworkflows%2Frelease.yml)

<hr>

</div>

## Overview  

**re-mocd** is a Rust-based library designed for efficient and high-performance community detection in graphs. By leveraging the speed and memory safety of Rust, the project aims to handle large-scale graphs while addressing limitations in traditional algorithms, such as Louvain.   

---

## Installation  

### Via PyPI  

Install the library using pip:  
```bash
pip install re-mocd
```

---

## Usage  

Using **re-mocd** with a `networkx.Graph()` is simple. For example:  

```python
import networkx as nx 
import re_mocd

# Create a graph
G = nx.Graph([
    (0, 1), (0, 3), (0, 7), 
    (1, 2), (1, 3), (1, 5), 
    (2, 3), 
    (3, 6), 
    (4, 5), (4, 6), 
    (5, 6), 
    (7, 8)
])

# Pareto envelope-based selection algorithm II (PESA-II) 
partition = re_mocd.pesa_ii_maxq(G, debug=True)
partition = re_mocd.pesa_ii_minimax(G, debug=True)

# Non-Dominated Sorting Genetic Algorithm 2 (NSGA-II)
partition = re_mocd.nsga_ii(G, debug=True)

# You can check the fitness value of the partition
# returned by the algorithm using:
mod = re_mocd.fitness(G, partition)
```

---

### Contributing  

Contributions are welcome! Feel free to submit issues, feature requests, or pull requests to improve the project.  

**License:** GPL-3.0 or later  
**Author:** [Guilherme Santos](https://github.com/0l1ve1r4)  

