├── docs ├── layouts │ ├── _default │ │ ├── list.html │ │ ├── single.html │ │ └── baseof.html │ ├── shortcodes │ │ ├── markdownify.html │ │ ├── katex.html │ │ ├── table.html │ │ ├── tab.html │ │ ├── tabs.html │ │ ├── alert.html │ │ └── prism.html │ ├── docs │ │ ├── _markup │ │ │ ├── render-codeblock-mermaid.html │ │ │ ├── render-heading.html │ │ │ ├── render-image.html │ │ │ └── render-codeblock.html │ │ ├── list.html │ │ └── single.html │ ├── partials │ │ ├── head │ │ │ ├── favicon.html │ │ │ └── plausible.html │ │ ├── docs │ │ │ ├── head │ │ │ │ ├── favicon.html │ │ │ │ ├── plausible.html │ │ │ │ ├── twitter_cards.html │ │ │ │ ├── opengraph.html │ │ │ │ └── get-featured-image.html │ │ │ ├── toc-mobile.html │ │ │ ├── toc.html │ │ │ ├── footer │ │ │ │ ├── katex.html │ │ │ │ ├── docsearch.html │ │ │ │ └── footer-scripts.html │ │ │ ├── footer.html │ │ │ ├── preload.html │ │ │ ├── i18nlist.html │ │ │ ├── doc-nav.html │ │ │ ├── breadcrumbs.html │ │ │ └── gitinfo.html │ │ ├── google-fonts.html │ │ ├── footer.html │ │ ├── landing │ │ │ ├── feature_grid.html │ │ │ └── image_text.html │ │ ├── header.html │ │ └── head.html │ ├── 404.html │ └── index.html ├── archetypes │ ├── default.md │ └── docs.md ├── assets │ ├── docs │ │ ├── scss │ │ │ ├── katex.scss │ │ │ ├── custom │ │ │ │ ├── plugins │ │ │ │ │ ├── chroma │ │ │ │ │ │ └── _default.scss │ │ │ │ │ ├── icons │ │ │ │ │ │ └── _google-material.scss │ │ │ │ │ ├── mermaid │ │ │ │ │ │ └── _mermaid.scss │ │ │ │ │ ├── docsearch │ │ │ │ │ │ ├── button.scss │ │ │ │ │ │ └── _variables.scss │ │ │ │ │ ├── prism │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ ├── _lotusdocs.scss │ │ │ │ │ │ │ └── _lucario.scss │ │ │ │ │ └── feedback │ │ │ │ │ │ └── _feedback.scss │ │ │ │ ├── components │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _breadcrumb.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _backgrounds.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _card.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ └── _table.scss │ │ │ │ ├── colors │ │ │ │ │ ├── _red.scss │ │ │ │ │ ├── _cyan.scss │ │ │ │ │ ├── _blue.scss │ │ │ │ │ ├── _green.scss │ │ │ │ │ ├── _yellow.scss │ │ │ │ │ ├── _emerald.scss │ │ │ │ │ ├── _magenta.scss │ │ │ │ │ └── _cardinal.scss │ │ │ │ ├── structure │ │ │ │ │ ├── _doc-nav.scss │ │ │ │ │ ├── _footer.scss │ │ │ │ │ └── _general.scss │ │ │ │ └── fonts │ │ │ │ │ └── _fonts.scss │ │ │ └── style.scss │ │ └── js │ │ │ ├── darkmode-init.js │ │ │ ├── bootstrap.js │ │ │ ├── scrollspy-script.js │ │ │ ├── toc-mobile-scrollspy.js │ │ │ ├── darkmode-switch.js │ │ │ ├── relativeTime.min.js │ │ │ └── simple-scrollspy.min.js │ ├── images │ │ ├── banner.png │ │ ├── moneroqr.png │ │ ├── logos │ │ │ └── title_logo.png │ │ ├── templates │ │ │ └── hero │ │ │ │ ├── gradient-mobile.webp │ │ │ │ └── gradient-desktop.webp │ │ └── social │ │ │ ├── rss.svg │ │ │ ├── github.svg │ │ │ └── github_icon.svg │ ├── articles │ │ └── hpmocd.pdf │ ├── opengraph │ │ └── poppins-bold.ttf │ ├── js │ │ ├── bootstrap.js │ │ └── app.js │ ├── scss │ │ ├── custom │ │ │ ├── components │ │ │ │ ├── _badge.scss │ │ │ │ ├── _backgrounds.scss │ │ │ │ ├── _nav.scss │ │ │ │ └── _buttons.scss │ │ │ ├── plugins │ │ │ │ └── icons │ │ │ │ │ └── _google-material.scss │ │ │ ├── structure │ │ │ │ ├── _general.scss │ │ │ │ └── _footer.scss │ │ │ └── pages │ │ │ │ └── _hero.scss │ │ └── style.scss │ └── jsconfig.json ├── static │ └── favicon.ico ├── config.toml ├── go.mod ├── content │ └── docs │ │ ├── contributing │ │ ├── _index.md │ │ ├── how-to-contribute.md │ │ └── financial-contributions.md │ │ ├── algorithms │ │ ├── _index.md │ │ ├── hpmocd │ │ │ ├── citation.md │ │ │ ├── _index.md │ │ │ ├── pareto.md │ │ │ ├── basic-usage.md │ │ │ └── plotting.md │ │ └── pso │ │ │ ├── _index.md │ │ │ └── basic-usage.md │ │ ├── library-configuration │ │ ├── _index.md │ │ └── limiting-usage.md │ │ ├── api │ │ └── _index.md │ │ └── quickstart.md ├── .gitignore ├── i18n │ └── en.toml ├── theme.toml ├── LICENSE ├── go.sum ├── data │ └── landing.yaml └── hugo.toml ├── res ├── logo.png ├── original_graph.png └── proposed_solution.png ├── tests ├── benchmarks │ ├── core │ │ └── __init__.py │ ├── experiments │ │ ├── __init__.py │ │ └── params.py │ ├── visualization │ │ ├── __init__.py │ │ ├── plot.py │ │ ├── evolutionary.py │ │ └── pareto_front.py │ ├── __init__.py │ └── README.md ├── output │ └── .gitkeep └── test.py ├── .github ├── ISSUE_TEMPLATE │ ├── custom.md │ ├── feature_request.md │ └── bug_report.md ├── workflows │ ├── rust.yml │ ├── hugo.yml │ └── release.yml └── dependabot.yml ├── src ├── mocd │ ├── core │ │ ├── hpmocd │ │ │ └── mod.rs │ │ └── mod.rs │ ├── operators │ │ ├── metrics.rs │ │ ├── population.rs │ │ ├── objective.rs │ │ └── mod.rs │ ├── macros.rs │ ├── xfeats.rs │ └── graph │ │ └── mod.rs └── pymocd │ └── __init__.py ├── Cargo.toml ├── pyproject.toml ├── Makefile └── README.md /docs/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | -------------------------------------------------------------------------------- /docs/layouts/shortcodes/markdownify.html: -------------------------------------------------------------------------------- 1 | {{ .Inner | .Page.RenderString }} -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/res/logo.png -------------------------------------------------------------------------------- /docs/assets/docs/scss/katex.scss: -------------------------------------------------------------------------------- 1 | // Katex 2 | @import "custom/plugins/katex/katex"; -------------------------------------------------------------------------------- /res/original_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/res/original_graph.png -------------------------------------------------------------------------------- /docs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/static/favicon.ico -------------------------------------------------------------------------------- /res/proposed_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/res/proposed_solution.png -------------------------------------------------------------------------------- /docs/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/images/banner.png -------------------------------------------------------------------------------- /tests/benchmarks/core/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Core utilities for benchmarking community detection algorithms. 3 | """ -------------------------------------------------------------------------------- /docs/assets/articles/hpmocd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/articles/hpmocd.pdf -------------------------------------------------------------------------------- /docs/assets/images/moneroqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/images/moneroqr.png -------------------------------------------------------------------------------- /tests/output/.gitkeep: -------------------------------------------------------------------------------- 1 | ## Save temporary files from benchmarks, build results, and 2 | ## files generated by both too -------------------------------------------------------------------------------- /docs/assets/images/logos/title_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/images/logos/title_logo.png -------------------------------------------------------------------------------- /docs/assets/opengraph/poppins-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/opengraph/poppins-bold.ttf -------------------------------------------------------------------------------- /tests/benchmarks/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Benchmark experiments for comparing different community detection algorithms. 3 | """ -------------------------------------------------------------------------------- /tests/benchmarks/visualization/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Visualization tools for benchmark results and community detection analysis. 3 | """ -------------------------------------------------------------------------------- /docs/layouts/docs/_markup/render-codeblock-mermaid.html: -------------------------------------------------------------------------------- 1 |
2 |     {{- .Inner }}
3 | 
4 | {{ .Page.Store.Set "hasMermaid" true }} -------------------------------------------------------------------------------- /docs/assets/images/templates/hero/gradient-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/images/templates/hero/gradient-mobile.webp -------------------------------------------------------------------------------- /docs/assets/images/templates/hero/gradient-desktop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliveira-sh/pymocd/HEAD/docs/assets/images/templates/hero/gradient-desktop.webp -------------------------------------------------------------------------------- /docs/layouts/partials/head/favicon.html: -------------------------------------------------------------------------------- 1 | {{ if os.FileExists "static/favicon.ico" -}} 2 | 3 | {{ end -}} -------------------------------------------------------------------------------- /docs/layouts/partials/docs/head/favicon.html: -------------------------------------------------------------------------------- 1 | {{ if os.FileExists "static/favicon.ico" -}} 2 | 3 | {{ end -}} -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- 1 | [module] 2 | [module.hugoVersion] 3 | extended = true 4 | min = "0.140.0" 5 | [[module.imports]] 6 | path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5" 7 | disable = false 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/layouts/partials/docs/toc-mobile.html: -------------------------------------------------------------------------------- 1 | {{ $toc := .TableOfContents }} 2 | {{ replaceRE "