-
Notifications
You must be signed in to change notification settings - Fork 9
/
mix.exs
113 lines (105 loc) · 3.4 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
defmodule Meow.MixProject do
use Mix.Project
@version "0.1.0-dev"
@description "Multi-population evolutionary algorithms in Elixir"
def project do
[
app: :meow,
version: @version,
description: @description,
name: "Meow",
elixir: "~> 1.14",
deps: deps(),
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:nx, "~> 0.7"},
{:vega_lite, "~> 0.1.1", optional: true},
{:jason, "~> 1.2", optional: true},
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp docs do
[
main: "Meow",
source_url: "https://github.com/jonatanklosko/meow",
# source_ref: "v#{@version}"
source_ref: "main",
extras: [
{:"README.md", [title: "Readme"]},
{:"notebooks/rastrigin_intro.livemd", [title: "Introduction"]},
{:"notebooks/metrics.livemd", [title: "Metrics and visualizations"]}
],
extra_section: "GUIDES",
groups_for_modules: [
"Building blocks": [
Meow.Topology,
Meow.Ops,
MeowNx.Ops,
MeowNx.Ops.Permutation
],
Runtime: [
Meow.Report,
Meow.Distribution
],
"Numerical definitions": [
MeowNx.Init,
MeowNx.Selection,
MeowNx.Crossover,
MeowNx.Mutation,
MeowNx.Metric,
MeowNx.Permutation
],
"Lower level": [
Meow.Algorithm,
Meow.Pipeline,
Meow.Op,
Meow.Op.Context,
Meow.Population,
Meow.RepresentationSpec,
MeowNx.RepresentationSpec
]
],
groups_for_functions: [
# Meow.Ops
"Operations: Termination": &(&1[:type] == :termination),
"Operations: Flow": &(&1[:type] == :flow),
"Operations: Multi-population": &(&1[:type] == :multi),
# MeowNx.Ops
"Operations: Initialization": &(&1[:type] == :init),
"Operations: Selection": &(&1[:type] == :selection),
"Operations: Crossover": &(&1[:type] == :crossover),
"Operations: Mutation": &(&1[:type] == :mutation),
"Operations: Logging": &(&1[:type] == :log),
"Operations: Other": &(&1[:type] == :other)
],
before_closing_body_tag: &before_closing_body_tag/1
]
end
# Add KaTeX integration for rendering math
defp before_closing_body_tag(:html) do
"""
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-t5CR+zwDAROtph0PXGte6ia8heboACF9R5l/DiY+WZ3P2lxNgvJkQk5n7GPvLMYw" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-FaFLTlohFghEIZkw6VGwmf9ISTubWAVYW8tG8+w2LAIftJEULZABrF9PPFv+tVkH" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-bHBqxz8fokvgoJ/sc17HODNxa42TlaEhB+w8ZJXTc2nZf1VgEaFZeZvT4Mznfz0v" crossorigin="anonymous"></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{ left: "$$", right: "$$", display: true },
{ left: "$", right: "$", display: false },
]
});
});
</script>
"""
end
defp before_closing_body_tag(_), do: ""
end