diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml
index 5577817..f889647 100644
--- a/.github/workflows/CompatHelper.yml
+++ b/.github/workflows/CompatHelper.yml
@@ -14,7 +14,7 @@ jobs:
run: which julia
continue-on-error: true
- name: Install Julia, but only if it is not already available in the PATH
- uses: julia-actions/setup-julia@v1
+ uses: julia-actions/setup-julia@v2
with:
version: "1"
arch: ${{ runner.arch }}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 18ae322..0749fd6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,7 +50,7 @@ jobs:
fail-fast: false
matrix:
version:
- - "1.8"
+ - "1.9"
- "1" # automatically expands to the latest stable 1.x release of Julia
- "pre"
os:
diff --git a/Project.toml b/Project.toml
index a432cb2..b50be0d 100644
--- a/Project.toml
+++ b/Project.toml
@@ -1,7 +1,7 @@
name = "CompositionalNetworks"
uuid = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
authors = ["Jean-François Baffier"]
-version = "0.5.8"
+version = "0.5.9"
[deps]
ConstraintCommons = "e37357d9-0691-492f-a822-e5ea6a920954"
@@ -12,7 +12,6 @@ JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
TestItems = "1c621080-faea-4a02-84b6-bbd5e436b8fe"
-ThreadSafeDicts = "4239201d-c60e-5e0a-9702-85d713665ba7"
Unrolled = "9602ed7d-8fef-5bc8-8597-8f21381861e8"
[compat]
@@ -23,19 +22,19 @@ Distances = "0.10"
JuliaFormatter = "1"
OrderedCollections = "1"
Random = "1"
-TestItemRunner = "0.2, 1"
TestItems = "0.1, 1"
-ThreadSafeDicts = "0.1"
Unrolled = "0.1"
-julia = "1.8"
+julia = "1.9"
[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Evolutionary = "86b6b26d-c046-49b6-aa0b-5f0f74682bd6"
+ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
+JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Memoization = "6fafb56a-5788-4b4e-91ca-c0cea6611c73"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
ThreadPools = "b189fb0b-2eb5-4ed4-bc0c-d34c51242431"
[targets]
-test = ["Aqua", "Evolutionary", "Memoization", "Test", "TestItemRunner", "ThreadPools"]
+test = ["Aqua", "ExplicitImports", "JET", "Evolutionary", "Memoization", "Test", "TestItemRunner", "ThreadPools"]
diff --git a/perf/Project.toml b/perf/Project.toml
deleted file mode 100644
index e348fbb..0000000
--- a/perf/Project.toml
+++ /dev/null
@@ -1,5 +0,0 @@
-[deps]
-CompositionalNetworks = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
-ConstraintDomains = "5800fd60-8556-4464-8d61-84ebf7a0bedb"
-PerfChecker = "6309bf6b-a531-4b08-891e-8ee981e5c424"
-Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
diff --git a/perf/allocs.jl b/perf/allocs.jl
deleted file mode 100644
index dcafcf9..0000000
--- a/perf/allocs.jl
+++ /dev/null
@@ -1,36 +0,0 @@
-using PerfChecker
-using Test
-
-using CompositionalNetworks
-using ConstraintDomains
-
-@testset "PerfChecker.jl" begin
- # Title of the alloc check (for logging purpose)
- title = "Explore, Learn, and Compose"
-
- # Dependencies needed to execute pre_alloc and alloc
- dependencies = [CompositionalNetworks, ConstraintDomains]
-
- # Target of the alloc check
- targets = [CompositionalNetworks]
-
- # Code specific to the package being checked
- domains = fill(domain([1, 2, 3]), 3)
-
- # Code to trigger precompilation before the alloc check
- pre_alloc() = foreach(_ -> explore_learn_compose(domains, allunique), 1:10)
-
- # Code being allocations check
- alloc() = explore_learn_compose(domains, allunique)
-
- # Actual call to PerfChecker
- alloc_check(
- title,
- dependencies,
- targets,
- pre_alloc,
- alloc;
- path = @__DIR__,
- threads = 10,
- )
-end
diff --git a/perf/bench.jl b/perf/bench.jl
deleted file mode 100644
index 5b37b3e..0000000
--- a/perf/bench.jl
+++ /dev/null
@@ -1,21 +0,0 @@
-using PerfChecker
-using BenchmarkTools
-
-using CompositionalNetworks
-using ConstraintDomains
-
-# Target of the becnhamrk
-target = CompositionalNetworks
-
-# Code specific to the package being checked
-domains = fill(domain([1, 2, 3, 4]), 4)
-
-# Code to trigger precompilation before the becnh (optional)
-foreach(_ -> explore_learn_compose(domains, allunique), 1:10)
-
-# Code being benchmarked
-t = @benchmark explore_learn_compose(domains, allunique) evals = 1 samples = 10 seconds =
- 3600
-
-# Store the bench results
-store_benchmark(t, target; path = @__DIR__)
diff --git a/perf/benchmarks/benchmark-0.2.7.csv b/perf/benchmarks/benchmark-0.2.7.csv
deleted file mode 100644
index aef1b5c..0000000
--- a/perf/benchmarks/benchmark-0.2.7.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-times,gctimes,memory,allocs
-2.82057323e10,7.4165509e9,35201313954,772781687
-3.31711664e10,1.09701184e10,35201313954,772781687
-2.94444416e10,8.9803602e9,35201313954,772781687
-2.75833201e10,7.4754396e9,35201313954,772781687
-2.64568053e10,6.8462894e9,35201313954,772781687
-3.03186626e10,9.2108541e9,35201313954,772781687
-2.72911134e10,7.3486411e9,35201313954,772781687
-2.90782494e10,8.4920859e9,35201313954,772781687
-2.97272747e10,9.0009021e9,35201313954,772781687
-2.70209456e10,7.2544251e9,35201313954,772781687
diff --git a/perf/benchmarks/benchmark-0.3.0.csv b/perf/benchmarks/benchmark-0.3.0.csv
deleted file mode 100644
index f4947d4..0000000
--- a/perf/benchmarks/benchmark-0.3.0.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-times,gctimes,memory,allocs
-4.5054707e9,4.609721e8,1688680160,43902598
-4.4884263e9,5.096094e8,1688680160,43902598
-5.1127691e9,5.08184e8,1688680160,43902598
-5.5702289e9,5.551036e8,1688680160,43902598
-4.685473e9,5.138967e8,1688680160,43902598
-3.9022191e9,4.279265e8,1688680160,43902598
-3.8231374e9,4.314888e8,1688680160,43902598
-5.1091927e9,5.27126e8,1688680160,43902598
-2.6517206e9,3.701838e8,1688680160,43902598
-1.547612e9,2.510559e8,1688680160,43902598
diff --git a/perf/benchmarks/benchmark-0.3.1.csv b/perf/benchmarks/benchmark-0.3.1.csv
deleted file mode 100644
index 0cbc899..0000000
--- a/perf/benchmarks/benchmark-0.3.1.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-times,gctimes,memory,allocs
-6.2163534e9,6.269408e8,1791540787,45464260
-3.2730546e9,3.811795e8,1791540787,45464260
-4.0982624e9,4.420458e8,1791540787,45464260
-3.618149e9,4.244872e8,1791540787,45464260
-4.5703931e9,5.245305e8,1791540787,45464260
-2.4535218e9,3.193049e8,1791540787,45464260
-3.8460514e9,4.634933e8,1791540787,45464260
-2.7953075e9,3.992261e8,1791540787,45464260
-1.6829643e9,2.564143e8,1791540787,45464260
-5.7435154e9,6.207959e8,1791540787,45464260
diff --git a/perf/benchmarks/benchmark-allocs.pdf b/perf/benchmarks/benchmark-allocs.pdf
deleted file mode 100644
index c8a93ac..0000000
Binary files a/perf/benchmarks/benchmark-allocs.pdf and /dev/null differ
diff --git a/perf/benchmarks/benchmark-allocs.png b/perf/benchmarks/benchmark-allocs.png
deleted file mode 100644
index 6e74d03..0000000
Binary files a/perf/benchmarks/benchmark-allocs.png and /dev/null differ
diff --git a/perf/benchmarks/benchmark-allocs.svg b/perf/benchmarks/benchmark-allocs.svg
deleted file mode 100644
index 9c7fcca..0000000
--- a/perf/benchmarks/benchmark-allocs.svg
+++ /dev/null
@@ -1,371 +0,0 @@
-
-
-
diff --git a/perf/benchmarks/benchmark-allocs.tikz b/perf/benchmarks/benchmark-allocs.tikz
deleted file mode 100644
index 9d5a1a0..0000000
--- a/perf/benchmarks/benchmark-allocs.tikz
+++ /dev/null
@@ -1,282 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Benchmarks (allocs) evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.015999999999999986}, xmax={2.984}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={allocations}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymode={log}, log basis y={10}, ymajorgrids={true}, ymin={4.028313140080153e7}, ymax={8.422166441968265e8}, ytick={{1.0e6,1.0e9,1.0e12}}, yticklabels={{$10^{6}$,$10^{9}$,$10^{12}$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid]
- table[row sep={\\}]
- {
- \\
- 0.5 7.72781687e8 \\
- 0.3 7.72781687e8 \\
- 0.7 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addlegendentry {allocs}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 7.72781687e8 \\
- 0.3 7.72781687e8 \\
- 0.7 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 4.3902598e7 \\
- 1.3 4.3902598e7 \\
- 1.7 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 4.3902598e7 \\
- 1.3 4.3902598e7 \\
- 1.7 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 4.546426e7 \\
- 2.3 4.546426e7 \\
- 2.7 4.546426e7 \\
- 2.5 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={db0199ff-11df-4b33-b692-8e4d5152104f}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 4.546426e7 \\
- 2.3 4.546426e7 \\
- 2.7 4.546426e7 \\
- 2.5 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 7.72781687e8 \\
- 0.3 7.72781687e8 \\
- 0.7 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.09999999999999998 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.9 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 7.72781687e8 \\
- 0.3 7.72781687e8 \\
- 0.7 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- 0.5 7.72781687e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 4.3902598e7 \\
- 1.3 4.3902598e7 \\
- 1.7 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.1 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.9 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 4.3902598e7 \\
- 1.3 4.3902598e7 \\
- 1.7 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- 1.5 4.3902598e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 4.546426e7 \\
- 2.3 4.546426e7 \\
- 2.7 4.546426e7 \\
- 2.5 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.1 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.9 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={ef0f6e0c-8e69-4ae5-91ee-654076f239d6}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 4.546426e7 \\
- 2.3 4.546426e7 \\
- 2.7 4.546426e7 \\
- 2.5 4.546426e7 \\
- 2.5 4.546426e7 \\
- }
- ;
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/benchmarks/benchmark-evolutions.pdf b/perf/benchmarks/benchmark-evolutions.pdf
deleted file mode 100644
index da73c8f..0000000
Binary files a/perf/benchmarks/benchmark-evolutions.pdf and /dev/null differ
diff --git a/perf/benchmarks/benchmark-evolutions.png b/perf/benchmarks/benchmark-evolutions.png
deleted file mode 100644
index a19587e..0000000
Binary files a/perf/benchmarks/benchmark-evolutions.png and /dev/null differ
diff --git a/perf/benchmarks/benchmark-evolutions.svg b/perf/benchmarks/benchmark-evolutions.svg
deleted file mode 100644
index 27991c7..0000000
--- a/perf/benchmarks/benchmark-evolutions.svg
+++ /dev/null
@@ -1,415 +0,0 @@
-
-
-
diff --git a/perf/benchmarks/benchmark-evolutions.tikz b/perf/benchmarks/benchmark-evolutions.tikz
deleted file mode 100644
index 18db2bd..0000000
--- a/perf/benchmarks/benchmark-evolutions.tikz
+++ /dev/null
@@ -1,45 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Benchmarks evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.44}, xmax={2.56}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={ratio}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymajorgrids={true}, ymin={0.3814041807690086}, ymax={20.209806681794515}, ytick={{5.0,10.0,15.0,20.0}}, yticklabels={{$5$,$10$,$15$,$20$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={68b3113f-eb17-41a6-bcb9-9228f0d965ef}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 7.527832433475178 \\
- 1.5 1.0809105294502879 \\
- 2.5 1.0 \\
- }
- ;
- \addlegendentry {times}
- \addplot[color={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, name path={a7e77995-f614-42d7-b6b9-bd7ff6cd66c5}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 18.61549572412261 \\
- 1.5 1.0217854165904532 \\
- 2.5 1.0 \\
- }
- ;
- \addlegendentry {gctimes}
- \addplot[color={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, name path={ee5486d9-f06f-4911-aa14-21ea31c078ce}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 19.6486254789353 \\
- 1.5 0.942585383628221 \\
- 2.5 1.0 \\
- }
- ;
- \addlegendentry {memory}
- \addplot[color={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, name path={dcb52430-d2da-4f48-8f1d-18218ff3c888}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 16.997564394537598 \\
- 1.5 0.9656507771159147 \\
- 2.5 1.0 \\
- }
- ;
- \addlegendentry {allocs}
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/benchmarks/benchmark-gctimes.pdf b/perf/benchmarks/benchmark-gctimes.pdf
deleted file mode 100644
index c0182af..0000000
Binary files a/perf/benchmarks/benchmark-gctimes.pdf and /dev/null differ
diff --git a/perf/benchmarks/benchmark-gctimes.png b/perf/benchmarks/benchmark-gctimes.png
deleted file mode 100644
index 0088d18..0000000
Binary files a/perf/benchmarks/benchmark-gctimes.png and /dev/null differ
diff --git a/perf/benchmarks/benchmark-gctimes.svg b/perf/benchmarks/benchmark-gctimes.svg
deleted file mode 100644
index c36bc35..0000000
--- a/perf/benchmarks/benchmark-gctimes.svg
+++ /dev/null
@@ -1,405 +0,0 @@
-
-
-
diff --git a/perf/benchmarks/benchmark-gctimes.tikz b/perf/benchmarks/benchmark-gctimes.tikz
deleted file mode 100644
index 321de61..0000000
--- a/perf/benchmarks/benchmark-gctimes.tikz
+++ /dev/null
@@ -1,289 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Benchmarks (gctimes) evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.015999999999999986}, xmax={2.984}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={time (ns)}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymode={log}, log basis y={10}, ymajorgrids={true}, ymin={2.2415952909119862e8}, ymax={1.228639692090918e10}, ytick={{1.0e9,1.0e10}}, yticklabels={{$10^{9}$,$10^{10}$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid]
- table[row sep={\\}]
- {
- \\
- 0.5 6.8462894e9 \\
- 0.3 6.8462894e9 \\
- 0.7 6.8462894e9 \\
- 0.5 6.8462894e9 \\
- 0.5 7.36561855e9 \\
- }
- ;
- \addlegendentry {gctimes}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.36561855e9 \\
- 0.9 7.98376275e9 \\
- 0.09999999999999998 7.98376275e9 \\
- 0.09999999999999998 7.36561855e9 \\
- 0.9 7.36561855e9 \\
- 0.9 7.98376275e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 8.995766625e9 \\
- 0.09999999999999998 8.995766625e9 \\
- 0.09999999999999998 7.98376275e9 \\
- 0.9 7.98376275e9 \\
- 0.9 8.995766625e9 \\
- 0.5 8.995766625e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 1.09701184e10 \\
- 0.3 1.09701184e10 \\
- 0.7 1.09701184e10 \\
- 0.5 1.09701184e10 \\
- 0.5 8.995766625e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 3.701838e8 \\
- 1.3 3.701838e8 \\
- 1.7 3.701838e8 \\
- 1.5 3.701838e8 \\
- 1.5 4.28817075e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.28817075e8 \\
- 1.9 4.8457805e8 \\
- 1.1 4.8457805e8 \\
- 1.1 4.28817075e8 \\
- 1.9 4.28817075e8 \\
- 1.9 4.8457805e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 5.12824875e8 \\
- 1.1 5.12824875e8 \\
- 1.1 4.8457805e8 \\
- 1.9 4.8457805e8 \\
- 1.9 5.12824875e8 \\
- 1.5 5.12824875e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 5.551036e8 \\
- 1.3 5.551036e8 \\
- 1.7 5.551036e8 \\
- 1.5 5.551036e8 \\
- 1.5 5.12824875e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 2.564143e8 \\
- 2.3 2.564143e8 \\
- 2.7 2.564143e8 \\
- 2.5 2.564143e8 \\
- 2.5 3.8569115e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 3.8569115e8 \\
- 2.9 4.332665e8 \\
- 2.1 4.332665e8 \\
- 2.1 3.8569115e8 \\
- 2.9 3.8569115e8 \\
- 2.9 4.332665e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 5.092712e8 \\
- 2.1 5.092712e8 \\
- 2.1 4.332665e8 \\
- 2.9 4.332665e8 \\
- 2.9 5.092712e8 \\
- 2.5 5.092712e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={0b3181ca-c5d1-4e08-9a5a-09e73ba2f22a}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 6.269408e8 \\
- 2.3 6.269408e8 \\
- 2.7 6.269408e8 \\
- 2.5 6.269408e8 \\
- 2.5 5.092712e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={b8371335-6980-471c-901e-c3dc06ca0fbb}, only marks, draw opacity={0.5}, line width={0}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 2.510559e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 6.8462894e9 \\
- 0.3 6.8462894e9 \\
- 0.7 6.8462894e9 \\
- 0.5 6.8462894e9 \\
- 0.5 7.36561855e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 7.36561855e9 \\
- 0.9 7.98376275e9 \\
- 0.09999999999999998 7.98376275e9 \\
- 0.09999999999999998 7.36561855e9 \\
- 0.9 7.36561855e9 \\
- 0.9 7.98376275e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 8.995766625e9 \\
- 0.09999999999999998 8.995766625e9 \\
- 0.09999999999999998 7.98376275e9 \\
- 0.9 7.98376275e9 \\
- 0.9 8.995766625e9 \\
- 0.5 8.995766625e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 1.09701184e10 \\
- 0.3 1.09701184e10 \\
- 0.7 1.09701184e10 \\
- 0.5 1.09701184e10 \\
- 0.5 8.995766625e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 3.701838e8 \\
- 1.3 3.701838e8 \\
- 1.7 3.701838e8 \\
- 1.5 3.701838e8 \\
- 1.5 4.28817075e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 4.28817075e8 \\
- 1.9 4.8457805e8 \\
- 1.1 4.8457805e8 \\
- 1.1 4.28817075e8 \\
- 1.9 4.28817075e8 \\
- 1.9 4.8457805e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 5.12824875e8 \\
- 1.1 5.12824875e8 \\
- 1.1 4.8457805e8 \\
- 1.9 4.8457805e8 \\
- 1.9 5.12824875e8 \\
- 1.5 5.12824875e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 5.551036e8 \\
- 1.3 5.551036e8 \\
- 1.7 5.551036e8 \\
- 1.5 5.551036e8 \\
- 1.5 5.12824875e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 2.564143e8 \\
- 2.3 2.564143e8 \\
- 2.7 2.564143e8 \\
- 2.5 2.564143e8 \\
- 2.5 3.8569115e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 3.8569115e8 \\
- 2.9 4.332665e8 \\
- 2.1 4.332665e8 \\
- 2.1 3.8569115e8 \\
- 2.9 3.8569115e8 \\
- 2.9 4.332665e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 5.092712e8 \\
- 2.1 5.092712e8 \\
- 2.1 4.332665e8 \\
- 2.9 4.332665e8 \\
- 2.9 5.092712e8 \\
- 2.5 5.092712e8 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={f1a1bd0c-2f0d-45cd-9cb8-46ffa769f2f1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 6.269408e8 \\
- 2.3 6.269408e8 \\
- 2.7 6.269408e8 \\
- 2.5 6.269408e8 \\
- 2.5 5.092712e8 \\
- }
- ;
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/benchmarks/benchmark-memory.pdf b/perf/benchmarks/benchmark-memory.pdf
deleted file mode 100644
index 875164c..0000000
Binary files a/perf/benchmarks/benchmark-memory.pdf and /dev/null differ
diff --git a/perf/benchmarks/benchmark-memory.png b/perf/benchmarks/benchmark-memory.png
deleted file mode 100644
index 8062d6f..0000000
Binary files a/perf/benchmarks/benchmark-memory.png and /dev/null differ
diff --git a/perf/benchmarks/benchmark-memory.svg b/perf/benchmarks/benchmark-memory.svg
deleted file mode 100644
index b4c5384..0000000
--- a/perf/benchmarks/benchmark-memory.svg
+++ /dev/null
@@ -1,375 +0,0 @@
-
-
-
diff --git a/perf/benchmarks/benchmark-memory.tikz b/perf/benchmarks/benchmark-memory.tikz
deleted file mode 100644
index d07ecec..0000000
--- a/perf/benchmarks/benchmark-memory.tikz
+++ /dev/null
@@ -1,282 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Benchmarks (memory) evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.015999999999999986}, xmax={2.984}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={size (bytes)}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymode={log}, log basis y={10}, ymajorgrids={true}, ymin={1.5416190089458804e9}, ymax={3.855930689431302e10}, ytick={{1.0e9,1.0e12,1.0e15}}, yticklabels={{$10^{9}$,$10^{12}$,$10^{15}$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid]
- table[row sep={\\}]
- {
- \\
- 0.5 3.5201313954e10 \\
- 0.3 3.5201313954e10 \\
- 0.7 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addlegendentry {memory}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.5201313954e10 \\
- 0.3 3.5201313954e10 \\
- 0.7 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 1.68868016e9 \\
- 1.3 1.68868016e9 \\
- 1.7 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 1.68868016e9 \\
- 1.3 1.68868016e9 \\
- 1.7 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.791540787e9 \\
- 2.3 1.791540787e9 \\
- 2.7 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={be9b7002-f00c-429a-9330-b2454480d12c}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.791540787e9 \\
- 2.3 1.791540787e9 \\
- 2.7 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.5201313954e10 \\
- 0.3 3.5201313954e10 \\
- 0.7 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.09999999999999998 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.9 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.5201313954e10 \\
- 0.3 3.5201313954e10 \\
- 0.7 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- 0.5 3.5201313954e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 1.68868016e9 \\
- 1.3 1.68868016e9 \\
- 1.7 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.1 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.9 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 1.68868016e9 \\
- 1.3 1.68868016e9 \\
- 1.7 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- 1.5 1.68868016e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.791540787e9 \\
- 2.3 1.791540787e9 \\
- 2.7 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.1 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.9 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={a5bfe175-106e-4a6c-8938-cf0e8594b2d1}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.791540787e9 \\
- 2.3 1.791540787e9 \\
- 2.7 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- 2.5 1.791540787e9 \\
- }
- ;
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/benchmarks/benchmark-params-0.2.7.txt b/perf/benchmarks/benchmark-params-0.2.7.txt
deleted file mode 100644
index ba5e12c..0000000
--- a/perf/benchmarks/benchmark-params-0.2.7.txt
+++ /dev/null
@@ -1 +0,0 @@
-BenchmarkTools.Parameters(5.0, 10000, 1, 0.0, true, false, 0.05, 0.01)
\ No newline at end of file
diff --git a/perf/benchmarks/benchmark-params-0.3.0.txt b/perf/benchmarks/benchmark-params-0.3.0.txt
deleted file mode 100644
index ba5e12c..0000000
--- a/perf/benchmarks/benchmark-params-0.3.0.txt
+++ /dev/null
@@ -1 +0,0 @@
-BenchmarkTools.Parameters(5.0, 10000, 1, 0.0, true, false, 0.05, 0.01)
\ No newline at end of file
diff --git a/perf/benchmarks/benchmark-params-0.3.1.txt b/perf/benchmarks/benchmark-params-0.3.1.txt
deleted file mode 100644
index ba5e12c..0000000
--- a/perf/benchmarks/benchmark-params-0.3.1.txt
+++ /dev/null
@@ -1 +0,0 @@
-BenchmarkTools.Parameters(5.0, 10000, 1, 0.0, true, false, 0.05, 0.01)
\ No newline at end of file
diff --git a/perf/benchmarks/benchmark-times.pdf b/perf/benchmarks/benchmark-times.pdf
deleted file mode 100644
index d870508..0000000
Binary files a/perf/benchmarks/benchmark-times.pdf and /dev/null differ
diff --git a/perf/benchmarks/benchmark-times.png b/perf/benchmarks/benchmark-times.png
deleted file mode 100644
index cbba170..0000000
Binary files a/perf/benchmarks/benchmark-times.png and /dev/null differ
diff --git a/perf/benchmarks/benchmark-times.svg b/perf/benchmarks/benchmark-times.svg
deleted file mode 100644
index 2036217..0000000
--- a/perf/benchmarks/benchmark-times.svg
+++ /dev/null
@@ -1,364 +0,0 @@
-
-
-
diff --git a/perf/benchmarks/benchmark-times.tikz b/perf/benchmarks/benchmark-times.tikz
deleted file mode 100644
index 8b47b30..0000000
--- a/perf/benchmarks/benchmark-times.tikz
+++ /dev/null
@@ -1,290 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Benchmarks (times) evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.015999999999999986}, xmax={2.984}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={time (ns)}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymode={log}, log basis y={10}, ymajorgrids={true}, ymin={1.4116568143308935e9}, ymax={3.6365846609092125e10}, ytick={{1.0e9,1.0e12,1.0e15}}, yticklabels={{$10^{9}$,$10^{12}$,$10^{15}$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid]
- table[row sep={\\}]
- {
- \\
- 0.5 2.64568053e10 \\
- 0.3 2.64568053e10 \\
- 0.7 2.64568053e10 \\
- 0.5 2.64568053e10 \\
- 0.5 2.7364165075e10 \\
- }
- ;
- \addlegendentry {times}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 2.7364165075e10 \\
- 0.9 2.864199085e10 \\
- 0.09999999999999998 2.864199085e10 \\
- 0.09999999999999998 2.7364165075e10 \\
- 0.9 2.7364165075e10 \\
- 0.9 2.864199085e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 2.9656566425e10 \\
- 0.09999999999999998 2.9656566425e10 \\
- 0.09999999999999998 2.864199085e10 \\
- 0.9 2.864199085e10 \\
- 0.9 2.9656566425e10 \\
- 0.5 2.9656566425e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.03186626e10 \\
- 0.3 3.03186626e10 \\
- 0.7 3.03186626e10 \\
- 0.5 3.03186626e10 \\
- 0.5 2.9656566425e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 2.6517206e9 \\
- 1.3 2.6517206e9 \\
- 1.7 2.6517206e9 \\
- 1.5 2.6517206e9 \\
- 1.5 3.842907825e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 3.842907825e9 \\
- 1.9 4.4969485e9 \\
- 1.1 4.4969485e9 \\
- 1.1 3.842907825e9 \\
- 1.9 3.842907825e9 \\
- 1.9 4.4969485e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 5.003262775e9 \\
- 1.1 5.003262775e9 \\
- 1.1 4.4969485e9 \\
- 1.9 4.4969485e9 \\
- 1.9 5.003262775e9 \\
- 1.5 5.003262775e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 5.5702289e9 \\
- 1.3 5.5702289e9 \\
- 1.7 5.5702289e9 \\
- 1.5 5.5702289e9 \\
- 1.5 5.003262775e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.6829643e9 \\
- 2.3 1.6829643e9 \\
- 2.7 1.6829643e9 \\
- 2.5 1.6829643e9 \\
- 2.5 2.914744275e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 2.914744275e9 \\
- 2.9 3.7321002e9 \\
- 2.1 3.7321002e9 \\
- 2.1 2.914744275e9 \\
- 2.9 2.914744275e9 \\
- 2.9 3.7321002e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.452360425e9 \\
- 2.1 4.452360425e9 \\
- 2.1 3.7321002e9 \\
- 2.9 3.7321002e9 \\
- 2.9 4.452360425e9 \\
- 2.5 4.452360425e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={c7f5587c-46c6-47a8-b97b-b84566318080}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={2}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 6.2163534e9 \\
- 2.3 6.2163534e9 \\
- 2.7 6.2163534e9 \\
- 2.5 6.2163534e9 \\
- 2.5 4.452360425e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={311abb9a-cab6-46bc-817f-db16bbd13384}, only marks, draw opacity={0.5}, line width={0}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.31711664e10 \\
- 1.5 1.547612e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 2.64568053e10 \\
- 0.3 2.64568053e10 \\
- 0.7 2.64568053e10 \\
- 0.5 2.64568053e10 \\
- 0.5 2.7364165075e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 2.7364165075e10 \\
- 0.9 2.864199085e10 \\
- 0.09999999999999998 2.864199085e10 \\
- 0.09999999999999998 2.7364165075e10 \\
- 0.9 2.7364165075e10 \\
- 0.9 2.864199085e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.9 2.9656566425e10 \\
- 0.09999999999999998 2.9656566425e10 \\
- 0.09999999999999998 2.864199085e10 \\
- 0.9 2.864199085e10 \\
- 0.9 2.9656566425e10 \\
- 0.5 2.9656566425e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 0.5 3.03186626e10 \\
- 0.3 3.03186626e10 \\
- 0.7 3.03186626e10 \\
- 0.5 3.03186626e10 \\
- 0.5 2.9656566425e10 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 2.6517206e9 \\
- 1.3 2.6517206e9 \\
- 1.7 2.6517206e9 \\
- 1.5 2.6517206e9 \\
- 1.5 3.842907825e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 3.842907825e9 \\
- 1.9 4.4969485e9 \\
- 1.1 4.4969485e9 \\
- 1.1 3.842907825e9 \\
- 1.9 3.842907825e9 \\
- 1.9 4.4969485e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.9 5.003262775e9 \\
- 1.1 5.003262775e9 \\
- 1.1 4.4969485e9 \\
- 1.9 4.4969485e9 \\
- 1.9 5.003262775e9 \\
- 1.5 5.003262775e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 1.5 5.5702289e9 \\
- 1.3 5.5702289e9 \\
- 1.7 5.5702289e9 \\
- 1.5 5.5702289e9 \\
- 1.5 5.003262775e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 1.6829643e9 \\
- 2.3 1.6829643e9 \\
- 2.7 1.6829643e9 \\
- 2.5 1.6829643e9 \\
- 2.5 2.914744275e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 2.914744275e9 \\
- 2.9 3.7321002e9 \\
- 2.1 3.7321002e9 \\
- 2.1 2.914744275e9 \\
- 2.9 2.914744275e9 \\
- 2.9 3.7321002e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.9 4.452360425e9 \\
- 2.1 4.452360425e9 \\
- 2.1 3.7321002e9 \\
- 2.9 3.7321002e9 \\
- 2.9 4.452360425e9 \\
- 2.5 4.452360425e9 \\
- }
- ;
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={fde2425f-4400-4f3d-9e65-6a49d8b75e89}, draw opacity={0.5}, line width={0}, solid, forget plot]
- table[row sep={\\}]
- {
- \\
- 2.5 6.2163534e9 \\
- 2.3 6.2163534e9 \\
- 2.7 6.2163534e9 \\
- 2.5 6.2163534e9 \\
- 2.5 4.452360425e9 \\
- }
- ;
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/mallocs/mallocs-0.2.7.csv b/perf/mallocs/mallocs-0.2.7.csv
deleted file mode 100644
index 6ce7164..0000000
--- a/perf/mallocs/mallocs-0.2.7.csv
+++ /dev/null
@@ -1,383 +0,0 @@
-bytes,ratio (%),filename: [C:\Users\jeanf\.julia\packages\CompositionalNetworks\DJEbb\src\,linenumber
-9361130400,7.21,icn.jl,152
-9021743271,6.95,icn.jl,152
-8652717784,6.67,transformation.jl,33
-8111975249,6.25,transformation.jl,33
-6495193902,5.0,icn.jl,150
-6382603858,4.92,icn.jl,150
-6352836672,4.89,transformation.jl,26
-5833048252,4.49,transformation.jl,26
-4662327879,3.59,transformation.jl,73
-4593581148,3.54,transformation.jl,59
-4530148933,3.49,transformation.jl,80
-4374215070,3.37,transformation.jl,66
-4119440068,3.17,transformation.jl,59
-3986744168,3.07,transformation.jl,66
-3967924977,3.06,transformation.jl,73
-3871924166,2.98,transformation.jl,80
-3161194727,2.44,aggregation.jl,11
-3119507034,2.4,aggregation.jl,11
-2934291601,2.26,icn.jl,154
-2728244224,2.1,icn.jl,154
-2296076408,1.77,genetic.jl,23
-2052219289,1.58,genetic.jl,23
-1609208442,1.24,icn.jl,152
-1351604009,1.04,transformation.jl,33
-1186800096,0.91,icn.jl,150
-1102465794,0.85,icn.jl,155
-1046930504,0.81,icn.jl,155
-953467588,0.73,icn.jl,151
-914828687,0.7,transformation.jl,26
-785618903,0.61,icn.jl,151
-694568505,0.54,arithmetic.jl,5
-604023424,0.47,icn.jl,154
-593651875,0.46,arithmetic.jl,5
-544120564,0.42,aggregation.jl,11
-540540512,0.42,transformation.jl,66
-540392998,0.42,transformation.jl,80
-537326494,0.41,transformation.jl,73
-528562660,0.41,transformation.jl,59
-523021046,0.4,genetic.jl,23
-266081551,0.2,arithmetic.jl,11
-243429952,0.19,icn.jl,155
-241583144,0.19,arithmetic.jl,11
-211914164,0.16,comparison.jl,38
-202686832,0.16,comparison.jl,38
-182428880,0.14,icn.jl,141
-175813728,0.14,comparison.jl,5
-153406148,0.12,comparison.jl,5
-143637276,0.11,aggregation.jl,5
-135607168,0.1,utils.jl,46
-128583147,0.1,icn.jl,151
-122344550,0.09,icn.jl,141
-121678128,0.09,utils.jl,47
-121644676,0.09,comparison.jl,57
-118600514,0.09,aggregation.jl,5
-102468762,0.08,comparison.jl,57
-95742758,0.07,icn.jl,141
-86842739,0.07,utils.jl,46
-79795744,0.06,arithmetic.jl,5
-77271183,0.06,utils.jl,47
-70401407,0.05,utils.jl,46
-62578764,0.05,utils.jl,47
-62232656,0.05,composition.jl,25
-53739415,0.04,comparison.jl,51
-50737074,0.04,comparison.jl,45
-50409504,0.04,icn.jl,98
-47694768,0.04,arithmetic.jl,11
-47545808,0.04,icn.jl,59
-43298464,0.03,icn.jl,76
-42733920,0.03,icn.jl,77
-42210336,0.03,icn.jl,137
-41929344,0.03,comparison.jl,51
-41819734,0.03,comparison.jl,45
-40866048,0.03,layer.jl,32
-40399408,0.03,icn.jl,125
-38584560,0.03,layer.jl,20
-33666644,0.03,icn.jl,98
-31506352,0.02,comparison.jl,5
-30070378,0.02,icn.jl,59
-30038992,0.02,layer.jl,20
-29545536,0.02,icn.jl,145
-27902940,0.02,icn.jl,98
-27766032,0.02,icn.jl,65
-27355664,0.02,icn.jl,133
-27346986,0.02,icn.jl,59
-27170197,0.02,icn.jl,137
-27085552,0.02,icn.jl,63
-25843182,0.02,composition.jl,25
-25821473,0.02,icn.jl,76
-25510713,0.02,icn.jl,77
-24656384,0.02,comparison.jl,57
-24544886,0.02,layer.jl,20
-24341424,0.02,composition.jl,25
-24311276,0.02,icn.jl,76
-23721381,0.02,icn.jl,77
-22927121,0.02,icn.jl,137
-22863648,0.02,icn.jl,104
-22494576,0.02,comparison.jl,38
-20381451,0.02,icn.jl,104
-20214304,0.02,icn.jl,130
-19623323,0.02,icn.jl,125
-19153602,0.01,icn.jl,125
-18919392,0.01,genetic.jl,46
-18679819,0.01,icn.jl,63
-18489488,0.01,aggregation.jl,5
-17969136,0.01,layer.jl,32
-17867397,0.01,icn.jl,65
-16347936,0.01,icn.jl,101
-15977099,0.01,metrics.jl,5
-15866385,0.01,icn.jl,104
-15430417,0.01,layer.jl,32
-15183472,0.01,icn.jl,61
-14992068,0.01,icn.jl,65
-14893697,0.01,icn.jl,101
-14737168,0.01,icn.jl,63
-14717472,0.01,icn.jl,103
-14463472,0.01,icn.jl,145
-13848672,0.01,icn.jl,144
-13790741,0.01,icn.jl,145
-13606000,0.01,icn.jl,140
-13271952,0.01,icn.jl,127
-13256031,0.01,icn.jl,130
-12631882,0.01,icn.jl,103
-12498495,0.01,genetic.jl,46
-11947602,0.01,metrics.jl,5
-11493219,0.01,icn.jl,101
-11355355,0.01,icn.jl,133
-11168288,0.01,comparison.jl,51
-10973587,0.01,icn.jl,130
-10930000,0.01,genetic.jl,46
-10411552,0.01,composition.jl,24
-10183823,0.01,icn.jl,103
-10154624,0.01,comparison.jl,45
-10010659,0.01,icn.jl,61
-9588352,0.01,icn.jl,133
-8813648,0.01,icn.jl,127
-8317515,0.01,icn.jl,61
-7759584,0.01,icn.jl,132
-7441248,0.01,icn.jl,136
-7394960,0.01,icn.jl,120
-7165553,0.01,icn.jl,127
-7032272,0.01,genetic.jl,17
-6764256,0.01,icn.jl,135
-6694992,0.01,icn.jl,119
-5757451,0.0,composition.jl,24
-5663728,0.0,icn.jl,144
-5634470,0.0,composition.jl,24
-5293840,0.0,icn.jl,158
-4673558,0.0,icn.jl,140
-4596464,0.0,icn.jl,144
-4449365,0.0,icn.jl,132
-4310016,0.0,icn.jl,140
-4028256,0.0,icn.jl,102
-4026480,0.0,icn.jl,132
-3632575,0.0,icn.jl,102
-3327440,0.0,genetic.jl,17
-3223056,0.0,icn.jl,99
-3187520,0.0,utils.jl,49
-3162800,0.0,icn.jl,120
-3140352,0.0,icn.jl,136
-3081776,0.0,genetic.jl,17
-3030720,0.0,icn.jl,138
-2953376,0.0,icn.jl,131
-2807008,0.0,icn.jl,119
-2800576,0.0,icn.jl,99
-2792608,0.0,icn.jl,117
-2787408,0.0,icn.jl,135
-2733792,0.0,icn.jl,102
-2455296,0.0,icn.jl,117
-2336976,0.0,icn.jl,107
-2265387,0.0,icn.jl,99
-2257808,0.0,icn.jl,120
-2241264,0.0,icn.jl,158
-2203632,0.0,composition.jl,23
-2162576,0.0,icn.jl,129
-2160464,0.0,icn.jl,136
-2146304,0.0,icn.jl,117
-2039310,0.0,icn.jl,107
-2031856,0.0,utils.jl,49
-2014768,0.0,icn.jl,138
-1981488,0.0,icn.jl,139
-1945120,0.0,icn.jl,119
-1903712,0.0,icn.jl,135
-1832398,0.0,composition.jl,23
-1760624,0.0,icn.jl,158
-1678688,0.0,icn.jl,131
-1661707,0.0,utils.jl,49
-1640619,0.0,icn.jl,107
-1587792,0.0,composition.jl,23
-1576720,0.0,icn.jl,138
-1550576,0.0,genetic.jl,7
-1467183,0.0,icn.jl,131
-1359072,0.0,icn.jl,100
-1347008,0.0,icn.jl,129
-1172816,0.0,icn.jl,60
-1149472,0.0,genetic.jl,7
-1124432,0.0,genetic.jl,7
-1119360,0.0,icn.jl,139
-1093163,0.0,icn.jl,129
-1054704,0.0,icn.jl,100
-980640,0.0,icn.jl,139
-947488,0.0,icn.jl,126
-935728,0.0,genetic.jl,16
-889007,0.0,icn.jl,100
-818816,0.0,genetic.jl,16
-793147,0.0,icn.jl,60
-738128,0.0,icn.jl,78
-720432,0.0,genetic.jl,19
-648208,0.0,icn.jl,60
-606576,0.0,icn.jl,126
-578192,0.0,icn.jl,78
-566368,0.0,genetic.jl,19
-563664,0.0,genetic.jl,16
-560304,0.0,icn.jl,149
-517552,0.0,icn.jl,126
-512368,0.0,genetic.jl,19
-498704,0.0,metrics.jl,5
-493375,0.0,icn.jl,78
-373312,0.0,genetic.jl,59
-370736,0.0,genetic.jl,59
-368752,0.0,genetic.jl,59
-356416,0.0,icn.jl,149
-291888,0.0,icn.jl,149
-271632,0.0,icn.jl,67
-220080,0.0,genetic.jl,24
-176400,0.0,genetic.jl,24
-154304,0.0,icn.jl,67
-133632,0.0,genetic.jl,24
-132976,0.0,icn.jl,67
-38096,0.0,explore.jl,60
-38096,0.0,explore.jl,60
-38096,0.0,explore.jl,60
-7488,0.0,genetic.jl,43
-5984,0.0,genetic.jl,43
-5968,0.0,genetic.jl,43
-4640,0.0,genetic.jl,44
-4096,0.0,genetic.jl,44
-3504,0.0,genetic.jl,49
-3504,0.0,genetic.jl,44
-2912,0.0,explore.jl,60
-2560,0.0,genetic.jl,45
-2560,0.0,genetic.jl,49
-2528,0.0,genetic.jl,49
-2400,0.0,genetic.jl,45
-2288,0.0,genetic.jl,85
-2048,0.0,genetic.jl,85
-2048,0.0,genetic.jl,85
-2032,0.0,genetic.jl,45
-1168,0.0,genetic.jl,60
-672,0.0,learn.jl,36
-608,0.0,genetic.jl,60
-592,0.0,genetic.jl,60
-384,0.0,explore.jl,54
-384,0.0,explore.jl,53
-384,0.0,explore.jl,54
-384,0.0,explore.jl,53
-384,0.0,explore.jl,54
-384,0.0,explore.jl,53
-384,0.0,explore.jl,54
-384,0.0,explore.jl,53
-320,0.0,utils.jl,62
-288,0.0,utils.jl,29
-288,0.0,utils.jl,29
-288,0.0,utils.jl,29
-256,0.0,icn.jl,26
-256,0.0,icn.jl,26
-256,0.0,icn.jl,26
-240,0.0,explore.jl,58
-240,0.0,explore.jl,58
-240,0.0,explore.jl,58
-224,0.0,genetic.jl,104
-192,0.0,learn.jl,39
-176,0.0,genetic.jl,61
-144,0.0,learn.jl,34
-144,0.0,genetic.jl,81
-144,0.0,genetic.jl,81
-144,0.0,genetic.jl,81
-128,0.0,genetic.jl,82
-128,0.0,genetic.jl,82
-128,0.0,genetic.jl,82
-96,0.0,layer.jl,66
-96,0.0,layer.jl,66
-96,0.0,layer.jl,66
-80,0.0,icn.jl,27
-80,0.0,icn.jl,27
-80,0.0,icn.jl,27
-80,0.0,explore.jl,58
-32,0.0,explore.jl,59
-32,0.0,explore.jl,26
-32,0.0,explore.jl,59
-32,0.0,explore.jl,26
-32,0.0,explore.jl,59
-32,0.0,explore.jl,26
-32,0.0,explore.jl,59
-32,0.0,explore.jl,26
-0,0.0,utils.jl,62
-0,0.0,utils.jl,37
-0,0.0,utils.jl,35
-0,0.0,utils.jl,34
-0,0.0,utils.jl,33
-0,0.0,utils.jl,32
-0,0.0,utils.jl,31
-0,0.0,utils.jl,28
-0,0.0,utils.jl,62
-0,0.0,utils.jl,37
-0,0.0,utils.jl,35
-0,0.0,utils.jl,34
-0,0.0,utils.jl,33
-0,0.0,utils.jl,32
-0,0.0,utils.jl,31
-0,0.0,utils.jl,28
-0,0.0,utils.jl,37
-0,0.0,utils.jl,35
-0,0.0,utils.jl,34
-0,0.0,utils.jl,33
-0,0.0,utils.jl,32
-0,0.0,utils.jl,31
-0,0.0,utils.jl,28
-0,0.0,learn.jl,75
-0,0.0,learn.jl,39
-0,0.0,learn.jl,36
-0,0.0,learn.jl,35
-0,0.0,learn.jl,34
-0,0.0,learn.jl,21
-0,0.0,learn.jl,20
-0,0.0,learn.jl,39
-0,0.0,learn.jl,36
-0,0.0,learn.jl,35
-0,0.0,learn.jl,34
-0,0.0,learn.jl,21
-0,0.0,learn.jl,20
-0,0.0,learn.jl,35
-0,0.0,learn.jl,21
-0,0.0,learn.jl,20
-0,0.0,layer.jl,85
-0,0.0,layer.jl,71
-0,0.0,layer.jl,69
-0,0.0,layer.jl,68
-0,0.0,layer.jl,67
-0,0.0,layer.jl,85
-0,0.0,layer.jl,71
-0,0.0,layer.jl,69
-0,0.0,layer.jl,68
-0,0.0,layer.jl,67
-0,0.0,layer.jl,85
-0,0.0,layer.jl,71
-0,0.0,layer.jl,69
-0,0.0,layer.jl,68
-0,0.0,layer.jl,67
-0,0.0,genetic.jl,107
-0,0.0,genetic.jl,106
-0,0.0,genetic.jl,105
-0,0.0,genetic.jl,104
-0,0.0,genetic.jl,87
-0,0.0,genetic.jl,86
-0,0.0,genetic.jl,83
-0,0.0,genetic.jl,61
-0,0.0,genetic.jl,107
-0,0.0,genetic.jl,106
-0,0.0,genetic.jl,105
-0,0.0,genetic.jl,104
-0,0.0,genetic.jl,87
-0,0.0,genetic.jl,86
-0,0.0,genetic.jl,83
-0,0.0,genetic.jl,61
-0,0.0,genetic.jl,107
-0,0.0,genetic.jl,106
-0,0.0,genetic.jl,105
-0,0.0,genetic.jl,87
-0,0.0,genetic.jl,86
-0,0.0,genetic.jl,83
-0,0.0,explore.jl,63
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
-0,0.0,explore.jl,63
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
-0,0.0,explore.jl,63
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
-0,0.0,explore.jl,63
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
diff --git a/perf/mallocs/mallocs-0.2.7.pdf b/perf/mallocs/mallocs-0.2.7.pdf
deleted file mode 100644
index 1b17c0d..0000000
Binary files a/perf/mallocs/mallocs-0.2.7.pdf and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.2.7.png b/perf/mallocs/mallocs-0.2.7.png
deleted file mode 100644
index 8b73db3..0000000
Binary files a/perf/mallocs/mallocs-0.2.7.png and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.2.7.svg b/perf/mallocs/mallocs-0.2.7.svg
deleted file mode 100644
index 7a37836..0000000
--- a/perf/mallocs/mallocs-0.2.7.svg
+++ /dev/null
@@ -1,385 +0,0 @@
-
-
-
diff --git a/perf/mallocs/mallocs-0.2.7.tikz b/perf/mallocs/mallocs-0.2.7.tikz
deleted file mode 100644
index ba74676..0000000
--- a/perf/mallocs/mallocs-0.2.7.tikz
+++ /dev/null
@@ -1,352 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Mallocs for CompositionalNetworks.jl@v0.2.7}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorticks={false}, xmajorgrids={false}, xmin={-1.5378071074071238}, xmax={1.5378394017790404}, x axis line style={{draw opacity = 0}}, scaled y ticks={false}, ylabel={}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymajorticks={false}, ymajorgrids={false}, ymin={-1.0599914819413592}, ymax={1.0599928147568383}, y axis line style={{draw opacity = 0}}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={328918ab-7fc6-43b9-95f2-fdfb821d5555}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 1.0 0.0 \\
- 0.9999571601499329 0.009256233838966335 \\
- 0.9998286442702368 0.018511674606592973 \\
- 0.9996144633721139 0.027765529299490332 \\
- 0.9993146358065192 0.03701700505016324 \\
- 0.9989291872625888 0.04626530919494358 \\
- 0.9984581507654383 0.05550964934190547 \\
- 0.9979015666733334 0.06474923343875719 \\
- 0.9972594826742324 0.07398326984070393 \\
- 0.9965319537816997 0.08321096737827577 \\
- 0.9957190423301925 0.09243153542511474 \\
- 0.9948208179697205 0.10164418396571552 \\
- 0.9938373576598774 0.11084812366311372 \\
- 0.9927687456632476 0.12004256592651602 \\
- 0.9916150735381867 0.12922672297886637 \\
- 0.9903764401309763 0.13839980792434253 \\
- 0.9890529515673552 0.14756103481577706 \\
- 0.9876447212434268 0.1567096187219971 \\
- 0.986151869815943 0.16584477579507687 \\
- 0.9845745251919665 0.1749657233374976 \\
- 0.9829128225179116 0.18407167986920903 \\
- 0.9811669041679649 0.19316186519458603 \\
- 0.9793369197318875 0.20223550046927574 \\
- 0.977423026002197 0.21129180826692873 \\
- 0.9754253869607341 0.22033001264580854 \\
- 0.9733441737646129 0.22934933921527428 \\
- 0.9711795647315561 0.23834901520213003 \\
- 0.9689317453246165 0.24732826951683595 \\
- 0.9666009081362866 0.25628633281957486 \\
- 0.9641872528719981 0.2652224375861693 \\
- 0.9616909863330102 0.2741358181738424 \\
- 0.9591123223986913 0.2830257108868184 \\
- 0.9564514820081941 0.29189135404175515 \\
- 0.9537086931415253 0.3007319880330058 \\
- 0.9508841908000126 0.30954685539770105 \\
- 0.9479782169861697 0.31833520088064826 \\
- 0.9449910206829614 0.3270962714990418 \\
- 0.9419228578324713 0.3358293166069782 \\
- 0.9387739913139724 0.34453358795977135 \\
- 0.9355446909214039 0.35320833977806193 \\
- 0.9322352333402548 0.3618528288117154 \\
- 0.9288459021238585 0.3704663144035034 \\
- 0.9253769876690972 0.3790480585525635 \\
- 0.9218287871915211 0.3875973259776303 \\
- 0.9182016046998831 0.3961133841800344 \\
- 0.9144957509700916 0.4045955035064628 \\
- 0.9107115435185829 0.413042957211475 \\
- 0.9068493065751165 0.4214550215197707 \\
- 0.9029093710549957 0.42983097568820244 \\
- 0.8988920745307144 0.4381701020675288 \\
- }
- ;
- \addlegendentry {icn.jl line 152}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={f23dd8df-e285-4954-9965-661f4d8ea0ac}, area legend, fill={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.8988920745307144 0.4381701020675288 \\
- 0.8949467409481047 0.44617298312018616 \\
- 0.8909301590783542 0.45414034355540195 \\
- 0.8868426486886235 0.4620715490775716 \\
- 0.882684535192818 0.469965968269447 \\
- 0.8784561496256805 0.4778229726424044 \\
- 0.8741578286164374 0.48564193668648015 \\
- 0.8697899143619988 0.49342223792016787 \\
- 0.8653527545997158 0.5011632569399757 \\
- 0.8608467025796962 0.5088643774697381 \\
- 0.8562721170366822 0.5165249864096785 \\
- 0.85162936216149 0.5241444738852198 \\
- 0.8469188075720169 0.5317222332955366 \\
- 0.8421408282838149 0.5392576613618486 \\
- 0.837295804680235 0.5467501581754484 \\
- 0.8323841224821441 0.5541991272454612 \\
- 0.8274061727172177 0.5616039755463327 \\
- 0.8223623516888087 0.5689641135650404 \\
- 0.8172530609443974 0.5762789553480269 \\
- 0.8120787072436237 0.583547918547847 \\
- 0.8068397025259043 0.5907704244695313 \\
- 0.801536463877637 0.5979458981166553 \\
- 0.7961694134989957 0.6050737682371176 \\
- 0.7907389786703195 0.6121534673686166 \\
- 0.7852455917180943 0.6191844318838289 \\
- 0.7796896899805362 0.6261661020352789 \\
- 0.7740717157727731 0.6330979219999029 \\
- 0.768392116351632 0.6399793399232979 \\
- 0.7626513438800312 0.6468098079636566 \\
- 0.756849855390984 0.6535887823353814 \\
- 0.7509881127512124 0.6603157233523766 \\
- 0.7450665826243774 0.6669900954710135 \\
- 0.7390857364339278 0.6736113673327659 \\
- 0.7330460503255684 0.6801790118065129 \\
- 0.7269480051293531 0.6866925060305041 \\
- 0.7207920863214066 0.6931513314539863 \\
- 0.714578783985273 0.6995549738784855 \\
- 0.7083085927729006 0.7059029234987438 \\
- 0.7019820118652611 0.7121946749433054 \\
- 0.6955995449326096 0.7184297273147503 \\
- 0.6891617000943859 0.7246075842295716 \\
- 0.6826689898787623 0.7307277538576937 \\
- 0.6761219311818409 0.7367897489616274 \\
- 0.6695210452265019 0.7427930869352598 \\
- 0.6628668575209082 0.7487372898422757 \\
- 0.6561598978166694 0.7546218844542066 \\
- 0.6494007000666666 0.7604464022881056 \\
- 0.6425898023825439 0.7662103796438438 \\
- 0.6357277469918683 0.7719133576410264 \\
- 0.6288150801949618 0.7775548822555253 \\
- }
- ;
- \addlegendentry {icn.jl line 152}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={76876ce7-2925-42b3-b6e7-3a9f701143ff}, area legend, fill={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.6288150801949618 0.7775548822555253 \\
- 0.6221338259092176 0.7829109161709008 \\
- 0.6154069528779613 0.7882095421583417 \\
- 0.6086349543576212 0.7934503716894311 \\
- 0.6018183269135088 0.79863302047375 \\
- 0.5949575703834077 0.8037571084870556 \\
- 0.5880531878409221 0.8088222599991478 \\
- 0.5811056855585889 0.8138281036014193 \\
- 0.5741155729707536 0.8187742722340897 \\
- 0.5670833626362161 0.8236604032131215 \\
- 0.5600095702006468 0.8284861382568128 \\
- 0.5528947143587759 0.8332511235120704 \\
- 0.5457393168163592 0.8379550095803554 \\
- 0.5385439022519241 0.8425974515433037 \\
- 0.5313089982782963 0.8471781089880176 \\
- 0.5240351354039121 0.8516966460320268 \\
- 0.5167228469939183 0.8561527313479176 \\
- 0.5093726692310625 0.8605460381876281 \\
- 0.5019851410763763 0.8648762444064068 \\
- 0.49456080422965654 0.8691430324864345 \\
- 0.48710020308974317 0.8733460895601073 \\
- 0.4796038847146012 0.8774851074329773 \\
- 0.4720723987812069 0.8815597826063513 \\
- 0.4645062975452418 0.8855698162995458 \\
- 0.45690613580059836 0.8895149144717952 \\
- 0.44927247083869826 0.8933947878438127 \\
- 0.4416058624076294 0.8972091519190015 \\
- 0.4339068726711004 0.9009577270043171 \\
- 0.42617606616722004 0.904640238230775 \\
- 0.41841400976710164 0.9082564155736065 \\
- 0.4106212726332964 0.9118059938720583 \\
- 0.40279842617805894 0.915288712848836 \\
- 0.3949460440214477 0.9187043171291887 \\
- 0.38706470194926385 0.9220525562596351 \\
- 0.3791549778708306 0.9253331847263288 \\
- 0.3712174517766174 0.9285459619730596 \\
- 0.3632527056957116 0.9316906524188943 \\
- 0.3552613236531403 0.934767025475449 \\
- 0.34724389162704594 0.9377748555637991 \\
- 0.33920099750571875 0.9407139221310192 \\
- 0.3311332310444895 0.9435840096663555 \\
- 0.32304118382248415 0.9463849077170282 \\
- 0.31492544919924603 0.9491164109036642 \\
- 0.3067866222712272 0.9517783189353556 \\
- 0.29862529982815184 0.9543704366243468 \\
- 0.2904420803092561 0.9568925739003473 \\
- 0.28223756375940656 0.959344545824468 \\
- 0.2740123517851021 0.9617261726027827 \\
- 0.26576704751035884 0.9640372795995115 \\
- 0.2575022555324865 0.966277697349826 \\
- }
- ;
- \addlegendentry {transformation.jl line 33}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={b439cb1e-dc55-4aba-af1d-10692022ed92}, area legend, fill={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.2575022555324865 0.966277697349826 \\
- 0.2497407379915745 0.9683127406925015 \\
- 0.24196314150362713 0.9702854415859777 \\
- 0.23416996681018562 0.9721956730227288 \\
- 0.22636171565575522 0.9740433120171725 \\
- 0.21853889075550292 0.9758282396135881 \\
- 0.21070199576289056 0.9775503408937746 \\
- 0.20285153523724836 0.9792095049844499 \\
- 0.1949880146112903 0.9808056250643892 \\
- 0.1871119401585733 0.9823385983713021 \\
- 0.17922381896090092 0.9838083262084492 \\
- 0.1713241588756777 0.9852147139509954 \\
- 0.16341346850321106 0.9865576710521033 \\
- 0.15549225715396642 0.9878371110487624 \\
- 0.14756103481577687 0.9890529515673552 \\
- 0.13962031212100784 0.9902051143289619 \\
- 0.1316706003136827 0.9912935251543987 \\
- 0.1237124112165666 0.9923181139689949 \\
- 0.11574625719821435 0.9932788148071038 \\
- 0.10777265113998268 0.9941755658163499 \\
- 0.09979210640300991 0.9950083092616113 \\
- 0.09180513679516362 0.9957769915287364 \\
- 0.08381225653796164 0.9964815631279963 \\
- 0.07581398023346426 0.9971219786972705 \\
- 0.06781082283114313 0.9976981970049676 \\
- 0.05980329959472766 0.9982101809526805 \\
- 0.051791926069030145 0.998657897577574 \\
- 0.04377721804675502 0.9990413180545071 \\
- 0.03575969153528991 0.9993604176978899 \\
- 0.02773986272348397 0.9996151759632715 \\
- 0.01971824794841457 0.9998055764486637 \\
- 0.01169536366214328 0.9999316068955968 \\
- 0.00367172639846672 0.9999932591899081 \\
- -0.004352147260340102 0.9999905293622656 \\
- -0.012375740716782456 0.9999234175884226 \\
- -0.020398537391405756 0.9997919281892065 \\
- -0.02842002075605405 0.999596069630241 \\
- -0.03643967436712629 0.9993358545214005 \\
- -0.044456981898825 0.9990112996159991 \\
- -0.052471427176399486 0.9986224258097111 \\
- -0.0604824942093783 0.9981692581392259 \\
- -0.06848966722478979 0.9976518257806365 \\
- -0.07649243070036979 0.9970701620475608 \\
- -0.08449026939775091 0.9964243043889964 \\
- -0.09248266839563575 0.9957142943869104 \\
- -0.10046911312294872 0.9949401777535613 \\
- -0.10844908939196536 0.9941020043285566 \\
- -0.11642208343141688 0.9931998280756437 \\
- -0.12438758191956893 0.9922337070792357 \\
- -0.13234507201726925 0.9912037035406717 \\
- }
- ;
- \addlegendentry {transformation.jl line 33}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={2b52df7d-7b46-4e9f-b3aa-d44903eecca9}, area legend, fill={rgb,1:red,0.6755;green,0.5557;blue,0.0942}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.13234507201726925 0.9912037035406717 \\
- -0.138704953754711 0.9903337497045648 \\
- -0.14505912016626898 0.9894229892500921 \\
- -0.15140730942905378 0.9884714597050613 \\
- -0.15774925996646394 0.9874792002771668 \\
- -0.16408471045896414 0.9864462518523743 \\
- -0.1704133998548529 0.9853726569932363 \\
- -0.17673506738101913 0.984258459937138 \\
- -0.18304945255368726 0.9831037065944749 \\
- -0.1893562951891507 0.9819084445467609 \\
- -0.1956553354144919 0.9806727230446672 \\
- -0.2019463136782915 0.9793965930059942 \\
- -0.2082289707613224 0.978080107013572 \\
- -0.2145030477872311 0.9767233193130943 \\
- -0.22076828623320455 0.9753262858108839 \\
- -0.22702442794062272 0.9738890640715877 \\
- -0.23327121512569587 0.972411713315806 \\
- -0.23950839039008653 0.9708942944176517 \\
- -0.2457356967315157 0.9693368699022422 \\
- -0.2519528775543525 0.9677395039431228 \\
- -0.258159676680187 0.9661022623596227 \\
- -0.26435583835838655 0.9644252126141428 \\
- -0.27054110727663333 0.962708423809376 \\
- -0.276715228571445 0.9609519666854598 \\
- -0.28287794783867587 0.9591559136170612 \\
- -0.2890290111440002 0.957320338610395 \\
- -0.29516816503337456 0.9554453173001742 \\
- -0.30129515654348255 0.9535309269464931 \\
- -0.3074097332121574 0.9515772464316442 \\
- -0.31351164308878476 0.949584356256868 \\
- -0.31960063474468453 0.9475523385390354 \\
- -0.32567645728347067 0.9454812770072646 \\
- -0.33173886035138955 0.9433712569994707 \\
- -0.33778759414763565 0.9412223654588495 \\
- -0.3438224094346447 0.9390346909302955 \\
- -0.3498430575483634 0.9368083235567521 \\
- -0.3558492904084956 0.934543355075499 \\
- -0.36184086052872455 0.9322398788143704 \\
- -0.3678175210269103 0.929897989687911 \\
- -0.3737790256352627 0.9275177841934642 \\
- -0.37972512871048886 0.9250993604071958 \\
- -0.38565558524391474 0.9226428179800532 \\
- -0.39157015087158037 0.9201482581336595 \\
- -0.39746858188430956 0.9176157836561422 \\
- -0.40335063523775155 0.9150454988978975 \\
- -0.40921606856239556 0.9124375097672919 \\
- -0.41506464017355776 0.9097919237262964 \\
- -0.42089610908133973 0.9071088497860601 \\
- -0.4267102350005583 0.9043883985024179 \\
- -0.43250677836064755 0.9016306819713344 \\
- }
- ;
- \addlegendentry {icn.jl line 150}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={4b89f4da-d9cd-4a0c-8ea5-f3ac751e4b24}, area legend, fill={rgb,1:red,0.0;green,0.6658;blue,0.681}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.43250677836064755 0.9016306819713344 \\
- -0.5092511373558424 0.8606179635016812 \\
- -0.5821395792899945 0.8130888698193256 \\
- -0.6506202118526301 0.7594032788504661 \\
- -0.7141745175185448 0.6999676839163033 \\
- -0.7723212796275412 0.635232115871417 \\
- -0.8246202260317271 0.5656867355872711 \\
- -0.8706753627216212 0.4918581225816785 \\
- -0.9101379721897213 0.4143052878957522 \\
- -0.9427092538287056 0.33361544140780586 \\
- -0.968142586371857 0.2503995456329969 \\
- -0.986245395245103 0.1652876896741875 \\
- -0.9968806106915656 0.07892431835126082 \\
- -0.9999677056280835 -0.008036647367314548 \\
- -0.9954833053753254 -0.09493676168385301 \\
- -0.9834613646447778 -0.18111803955164513 \\
- -0.963992910442508 -0.2659279387664686 \\
- -0.9372253528363667 -0.34872430084631056 \\
- -0.9033613688053229 -0.4288802132882484 \\
- -0.862657367622134 -0.5057887563867453 \\
- -0.8154215493890715 -0.5788675986716876 \\
- -0.7620115714269674 -0.6475634061707036 \\
- -0.7028318401870729 -0.7113560321099786 \\
- -0.6383304491906723 -0.7697624553302367 \\
- -0.5689957861815728 -0.8223404375972362 \\
- -0.49535283518122647 -0.8686918721145724 \\
- -0.41795920144636733 -0.9084657978847167 \\
- -0.3374008894271467 -0.9413610570943385 \\
- -0.2542878656939599 -0.9671285754028833 \\
- -0.1692494404293477 -0.9855732478686466 \\
- -0.08292950245508814 -0.9965554162326105 \\
- 0.004018356126359926 -0.9999919263744291 \\
- 0.0909357887611425 -0.9958567579337848 \\
- 0.17716467927275079 -0.984181221329783 \\
- 0.26205212494641733 -0.9650537206866089 \\
- 0.344955380138528 -0.9386190844605088 \\
- 0.4252467229793352 -0.9050774688364177 \\
- 0.5023182083195741 -0.8646828421974226 \\
- 0.5755862709328867 -0.8177410621422734 \\
- 0.6444961441198283 -0.7646075596112515 \\
- 0.708526060256911 -0.7056846476556085 \\
- 0.7671912014852457 -0.641418475227854 \\
- 0.8200473706251754 -0.5722956490580162 \\
- 0.8666943545217002 -0.49883954919414064 \\
- 0.9067789543543201 -0.4216063661047897 \\
- 0.9399976599665676 -0.34118088934959007 \\
- 0.9660989479659163 -0.2581720797048932 \\
- 0.9848851861934383 -0.17320845827128728 \\
- 0.9962141301430728 -0.08693334747541226 \\
- 1.0 -2.4492935982947064e-16 \\
- }
- ;
- \addlegendentry {others .< 5.0}
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/mallocs/mallocs-0.3.0.csv b/perf/mallocs/mallocs-0.3.0.csv
deleted file mode 100644
index eeacf54..0000000
--- a/perf/mallocs/mallocs-0.3.0.csv
+++ /dev/null
@@ -1,121 +0,0 @@
-bytes,ratio (%),filename: [C:\Users\jeanf\.julia\packages\CompositionalNetworks\rxbIQ\src\,linenumber
-1704019332,22.36,metrics.jl,5
-1164158391,15.27,icn.jl,157
-862757082,11.32,transformation.jl,44
-629515109,8.26,transformation.jl,34
-427140513,5.6,transformation.jl,98
-425397097,5.58,transformation.jl,108
-421012052,5.52,transformation.jl,79
-418539965,5.49,transformation.jl,89
-372953844,4.89,aggregation.jl,11
-280299686,3.68,icn.jl,158
-126481278,1.66,genetic.jl,34
-125916255,1.65,icn.jl,147
-91636053,1.2,utils.jl,65
-82368988,1.08,utils.jl,66
-47306582,0.62,arithmetic.jl,5
-40356848,0.53,icn.jl,156
-28183766,0.37,icn.jl,143
-24044662,0.32,comparison.jl,57
-21347003,0.28,layer.jl,20
-19718480,0.26,arithmetic.jl,11
-19702811,0.26,comparison.jl,38
-19305300,0.25,icn.jl,98
-18404060,0.24,icn.jl,65
-18366883,0.24,icn.jl,59
-17360216,0.23,icn.jl,63
-17148400,0.22,icn.jl,131
-14294336,0.19,icn.jl,76
-14057275,0.18,icn.jl,77
-13799152,0.18,comparison.jl,5
-13745392,0.18,icn.jl,136
-13502660,0.18,icn.jl,104
-12920896,0.17,icn.jl,151
-9786002,0.13,icn.jl,61
-9763120,0.13,layer.jl,32
-9418560,0.12,icn.jl,133
-9413339,0.12,icn.jl,101
-8441712,0.11,aggregation.jl,5
-7750880,0.1,icn.jl,103
-7627168,0.1,composition.jl,25
-5788944,0.08,comparison.jl,45
-5210096,0.07,comparison.jl,51
-4672384,0.06,icn.jl,138
-3560576,0.05,icn.jl,139
-3297296,0.04,icn.jl,146
-3149472,0.04,composition.jl,24
-2402512,0.03,icn.jl,150
-2303264,0.03,icn.jl,102
-2162848,0.03,utils.jl,68
-2145392,0.03,icn.jl,144
-1700928,0.02,icn.jl,99
-1668880,0.02,icn.jl,137
-1513888,0.02,genetic.jl,32
-1435056,0.02,icn.jl,135
-1273456,0.02,icn.jl,145
-1197552,0.02,icn.jl,107
-1196784,0.02,composition.jl,23
-1004096,0.01,icn.jl,117
-718000,0.01,icn.jl,100
-705312,0.01,icn.jl,60
-698400,0.01,genetic.jl,33
-677776,0.01,icn.jl,132
-660416,0.01,icn.jl,163
-651824,0.01,icn.jl,142
-640464,0.01,icn.jl,126
-626784,0.01,icn.jl,141
-615968,0.01,icn.jl,125
-590272,0.01,genetic.jl,31
-356016,0.0,icn.jl,78
-355408,0.0,icn.jl,155
-316752,0.0,genetic.jl,7
-178272,0.0,icn.jl,67
-154848,0.0,genetic.jl,27
-104496,0.0,genetic.jl,50
-44304,0.0,icn.jl,26
-26144,0.0,utils.jl,53
-17104,0.0,layer.jl,85
-15824,0.0,utils.jl,48
-10992,0.0,utils.jl,54
-8720,0.0,utils.jl,50
-5952,0.0,layer.jl,69
-2912,0.0,explore.jl,52
-2512,0.0,layer.jl,66
-2512,0.0,icn.jl,27
-2096,0.0,genetic.jl,40
-1936,0.0,utils.jl,52
-1760,0.0,genetic.jl,51
-1392,0.0,utils.jl,56
-1184,0.0,genetic.jl,38
-1040,0.0,layer.jl,71
-800,0.0,utils.jl,51
-768,0.0,utils.jl,47
-672,0.0,learn.jl,36
-656,0.0,layer.jl,67
-496,0.0,layer.jl,68
-448,0.0,genetic.jl,52
-384,0.0,explore.jl,46
-384,0.0,explore.jl,45
-272,0.0,genetic.jl,76
-192,0.0,learn.jl,39
-192,0.0,genetic.jl,30
-144,0.0,learn.jl,34
-144,0.0,genetic.jl,95
-144,0.0,genetic.jl,72
-128,0.0,genetic.jl,73
-96,0.0,utils.jl,81
-80,0.0,explore.jl,50
-32,0.0,explore.jl,51
-32,0.0,explore.jl,26
-0,0.0,learn.jl,35
-0,0.0,learn.jl,21
-0,0.0,learn.jl,20
-0,0.0,genetic.jl,98
-0,0.0,genetic.jl,97
-0,0.0,genetic.jl,96
-0,0.0,genetic.jl,78
-0,0.0,genetic.jl,77
-0,0.0,genetic.jl,74
-0,0.0,explore.jl,55
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
diff --git a/perf/mallocs/mallocs-0.3.0.pdf b/perf/mallocs/mallocs-0.3.0.pdf
deleted file mode 100644
index 3d25bdd..0000000
Binary files a/perf/mallocs/mallocs-0.3.0.pdf and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.3.0.png b/perf/mallocs/mallocs-0.3.0.png
deleted file mode 100644
index edd5025..0000000
Binary files a/perf/mallocs/mallocs-0.3.0.png and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.3.0.svg b/perf/mallocs/mallocs-0.3.0.svg
deleted file mode 100644
index 042c387..0000000
--- a/perf/mallocs/mallocs-0.3.0.svg
+++ /dev/null
@@ -1,503 +0,0 @@
-
-
-
diff --git a/perf/mallocs/mallocs-0.3.0.tikz b/perf/mallocs/mallocs-0.3.0.tikz
deleted file mode 100644
index 1ac977f..0000000
--- a/perf/mallocs/mallocs-0.3.0.tikz
+++ /dev/null
@@ -1,526 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Mallocs for CompositionalNetworks.jl@v0.3.0}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorticks={false}, xmajorgrids={false}, xmin={-1.537800118696119}, xmax={1.537801730704409}, x axis line style={{draw opacity = 0}}, scaled y ticks={false}, ylabel={}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymajorticks={false}, ymajorgrids={false}, ymin={-1.0599946126903559}, ymax={1.0599589008720163}, y axis line style={{draw opacity = 0}}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={911dc2a9-0293-48ad-9ca7-31ce1b76ea9d}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 1.0 0.0 \\
- 0.9995888264679378 0.028673646444966703 \\
- 0.9983556439990982 0.05732371320096164 \\
- 0.9963014666974637 0.08592663996970107 \\
- 0.9934279838097078 0.11445890521833132 \\
- 0.9897375583360469 0.14289704552229238 \\
- 0.9852332250870347 0.17121767486039616 \\
- 0.9799186881878944 0.19939750384625224 \\
- 0.9737983180324421 0.22741335888022665 \\
- 0.9668771476891065 0.25524220120618324 \\
- 0.9591608687619998 0.28286114585733724 \\
- 0.9506558267104436 0.3102474804756406 \\
- 0.9413690156307993 0.3373786839892228 \\
- 0.9313080725048933 0.36423244513252834 \\
- 0.9204812709197676 0.39078668079392026 \\
- 0.9088975142639195 0.4170195541756624 \\
- 0.8965663284056264 0.44290949275134567 \\
- 0.8834978538593763 0.4684352060059921 \\
- 0.8697028374468445 0.4935757029442469 \\
- 0.8551926234592778 0.5183103093522624 \\
- 0.8399791443285484 0.5426186847990766 \\
- 0.8240749108145546 0.5664808393635073 \\
- 0.807493001717034 0.5898771500728047 \\
- 0.7902470531202503 0.6127883770395456 \\
- 0.7723512471794003 0.6351956792834984 \\
- 0.7538203004579593 0.6570806302254479 \\
- 0.7346694518255595 0.6784252328402386 \\
- 0.714914449926349 0.6992119344565751 \\
- 0.6945715402281414 0.7194236411914106 \\
- 0.6736574516630027 0.7390437320070505 \\
- 0.6521893828702635 0.758056072379415 \\
- 0.6301849880532678 0.7764450275662165 \\
- 0.6076623624614913 0.7941954754641448 \\
- 0.5846400275099657 0.8112928190444845 \\
- 0.5611369155482475 0.8277229983569376 \\
- 0.5371723542914565 0.8434725020917836 \\
- 0.5127660509261851 0.8585283786908648 \\
- 0.48793807590435184 0.872878246998262 \\
- 0.46270884643832416 0.8865103064419022 \\
- 0.4370991097108835 0.8994133467377238 \\
- 0.41112992581384067 0.9115767571084213 \\
- 0.384822650429331 0.9229905350091868 \\
- 0.3581989172680323 0.9336452943532727 \\
- 0.3312806202787458 0.9435322732306137 \\
- 0.3040898956439717 0.9526433411131567 \\
- 0.2766491035762849 0.9609710055409778 \\
- 0.24898080993047947 0.9685084182836835 \\
- 0.2211077676466044 0.9752493809720338 \\
- 0.19305289803915002 0.9811883501951527 \\
- 0.16483927194777245 0.9863204420591354 \\
- }
- ;
- \addlegendentry {metrics.jl line 5}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={300a63e4-2500-414e-bb4b-d8e9db9b3133}, area legend, fill={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.16483927194777245 0.9863204420591354 \\
- 0.14549242750407082 0.9893593652151743 \\
- 0.12608978155760542 0.9920188339879215 \\
- 0.10663877571080217 0.9942978283768407 \\
- 0.08714687011382197 0.9961954743068072 \\
- 0.06762154060333037 0.9977110439633472 \\
- 0.04807027583524782 0.9988439560717796 \\
- 0.028500574412585286 0.9995937761201561 \\
- 0.008919942009464887 0.9999602165259115 \\
- -0.01066411150757369 0.9999431367461622 \\
- -0.03024407495987143 0.9995425433316091 \\
- -0.04981243873745479 0.9987585899240253 \\
- -0.0693616976792366 0.9975915771973288 \\
- -0.0888843539515107 0.996041952742264 \\
- -0.10837291992363851 0.994110310894734 \\
- -0.12781992103981893 0.9917973925078521 \\
- -0.14721789868584723 0.9891040846677985 \\
- -0.1665594130497562 0.9860314203535914 \\
- -0.18583704597524917 0.982580578040902 \\
- -0.20504340380682545 0.9787528812500688 \\
- -0.22417112022550842 0.9745497980384792 \\
- -0.24321285907409146 0.9699729404375187 \\
- -0.2621613171708127 0.9650240638342986 \\
- -0.2810092271103854 0.9597050662984039 \\
- -0.299749360051305 0.9540179878539152 \\
- -0.3183745284883652 0.9479650096969883 \\
- -0.3368775890093227 0.9415484533592873 \\
- -0.35525144503464706 0.9347707798175953 \\
- -0.373489049539312 0.9276345885499426 \\
- -0.3915834077555789 0.9201426165386146 \\
- -0.4095275798557372 0.9122977372204224 \\
- -0.42731468361377556 0.9041029593846371 \\
- -0.4449378970449591 0.8955614260190137 \\
- -0.46239046102230175 0.8866764131043429 \\
- -0.4796656818689313 0.8774513283579968 \\
- -0.49675693392535303 0.8678897099269482 \\
- -0.5136576620906227 0.8579952250307665 \\
- -0.5303613843364615 0.8477716685551081 \\
- -0.5468616941933432 0.8372229615962443 \\
- -0.5631522632076035 0.8263531499571802 \\
- -0.579226843368624 0.8151664025959482 \\
- -0.5950792695051672 0.8036670100266631 \\
- -0.6107034616499392 0.7918593826739577 \\
- -0.6260934273714698 0.7797480491814303 \\
- -0.6412432640724247 0.7673376546747479 \\
- -0.6561471612534606 0.754632958980076 \\
- -0.6707994027417566 0.7416388347985173 \\
- -0.6851943688833695 0.7283602658372579 \\
- -0.6993265386985703 0.7148023448981383 \\
- -0.7131904919993366 0.7009702719243834 \\
- }
- ;
- \addlegendentry {icn.jl line 157}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={88fdd720-6af8-41fc-b6cd-7dfbbbeb2f4a}, area legend, fill={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.7131904919993366 0.7009702719243834 \\
- -0.7232918993826377 0.6905424159944531 \\
- -0.7332408523044593 0.6799690084936445 \\
- -0.7430352537383303 0.6692522780700975 \\
- -0.7526730392339261 0.6583944835813591 \\
- -0.7621521773522123 0.6473979136182645 \\
- -0.7714706700936288 0.636264886022549 \\
- -0.780626553319224 0.6249977473982995 \\
- -0.7896178971646545 0.6135988726173388 \\
- -0.7984428064469589 0.602070664318653 \\
- -0.8070994210640215 0.5904155524019681 \\
- -0.8155859163866424 0.5786359935155787 \\
- -0.8239005036431303 0.5667344705385374 \\
- -0.8320414302963367 0.5547134920573199 \\
- -0.8400069804130545 0.5425755918370657 \\
- -0.847795475025699 0.5303233282875169 \\
- -0.8554052724861979 0.5179592839237593 \\
- -0.8628347688120175 0.5054860648218825 \\
- -0.8700823980242458 0.4929063000696764 \\
- -0.8771466324776686 0.4802226412124753 \\
- -0.8840259831827644 0.4674377616942675 \\
- -0.8907190001195509 0.4545543562941924 \\
- -0.8972242725432182 0.44157514055853825 \\
- -0.9035404292814853 0.4285028502283613 \\
- -0.909666139023611 0.41534024066285274 \\
- -0.9156001106010082 0.4020900862585666 \\
- -0.9213410932593938 0.38875517986463537 \\
- -0.9268878769224205 0.3753383321940992 \\
- -0.9322392924467352 0.36184237123146656 \\
- -0.9373942118684104 0.3482701416366347 \\
- -0.9423515486406934 0.3346245041452984 \\
- -0.9471102578630277 0.32090833496596666 \\
- -0.9516693365012965 0.3071245251737186 \\
- -0.9560278235992393 0.2932759801008288 \\
- -0.9601848004810021 0.27936561872438465 \\
- -0.9641393909447743 0.2653963730510265 \\
- -0.9678907614474732 0.2513711874989465 \\
- -0.9714381212804369 0.2372930182772666 \\
- -0.9747807227360894 0.22316483276293167 \\
- -0.9779178612655404 0.20898960887525309 \\
- -0.9808488756270903 0.19477033444822336 \\
- -0.9835731480256046 0.18051000660074784 \\
- -0.9860901042427328 0.16621163110491477 \\
- -0.9883992137579412 0.15187822175244153 \\
- -0.9904999898603345 0.13751279971943442 \\
- -0.9923919897512452 0.1231183929295881 \\
- -0.9940748146375654 0.10869803541596264 \\
- -0.9955481098158041 0.09425476668147696 \\
- -0.9968115647468506 0.07979163105824524 \\
- -0.9978649131214306 0.0653116770658956 \\
- }
- ;
- \addlegendentry {transformation.jl line 44}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={186f52fa-34d7-4bfd-81a3-1907f14df257}, area legend, fill={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.9978649131214306 0.0653116770658956 \\
- -0.9985008036336814 0.054737054569024855 \\
- -0.9990246353985445 0.044156289096856725 \\
- -0.9994363496279536 0.03357056809693436 \\
- -0.9997359001164567 0.02298107957294356 \\
- -0.9999232532464021 0.012389011951388057 \\
- -0.9999983879917103 0.0017955539482172873 \\
- -0.9999612959202343 -0.00879810556458229 \\
- -0.9998119811947063 -0.01939077769240895 \\
- -0.9995504605722693 -0.029981273651472667 \\
- -0.9991767634025976 -0.040568404902206964 \\
- -0.9986909316246029 -0.05115098328265782 \\
- -0.9980930197617268 -0.061727821141826164 \\
- -0.9973830949158226 -0.07229773147295307 \\
- -0.9965612367596244 -0.0828595280467366 \\
- -0.9956275375278054 -0.09341202554445749 \\
- -0.9945821020066274 -0.10395403969100248 \\
- -0.9934250475221802 -0.1144843873877747 \\
- -0.9921565039272146 -0.12500188684546787 \\
- -0.9907766135865697 -0.13550535771669375 \\
- -0.9892855313611958 -0.1459936212284515 \\
- -0.9876834245907742 -0.1564655003144162 \\
- -0.9859704730749376 -0.1669198197470382 \\
- -0.9841468690530921 -0.17735540626943377 \\
- -0.982212817182842 -0.1877710887270588 \\
- -0.9801685345170219 -0.19816569819914248 \\
- -0.9780142504793381 -0.20853806812987075 \\
- -0.97575020683862 -0.2188870344593077 \\
- -0.9733766576816884 -0.22921143575403338 \\
- -0.9708938693848388 -0.23951011333748662 \\
- -0.9683021205839477 -0.24978191142000244 \\
- -0.965601702143202 -0.2600256772285211 \\
- -0.9627929171224555 -0.2702402611359612 \\
- -0.9598760807432186 -0.28042451679023733 \\
- -0.9568515203532807 -0.2905773012429141 \\
- -0.9537195753899737 -0.30069747507747446 \\
- -0.9504805973420779 -0.310783902537192 \\
- -0.9471349497103752 -0.3208354516525959 \\
- -0.9436830079668543 -0.3308509943685072 \\
- -0.9401251595125738 -0.3408294066706357 \\
- -0.9364618036341839 -0.35076956871172743 \\
- -0.9326933514591159 -0.3606703649372403 \\
- -0.9288202259094439 -0.37053068421053836 \\
- -0.9248428616544196 -0.38034941993759364 \\
- -0.9207617050616925 -0.3901254701911743 \\
- -0.9165772141472136 -0.3998577378345115 \\
- -0.9122898585238356 -0.40954513064442605 \\
- -0.9079001193486079 -0.4191865614339078 \\
- -0.9034084892687788 -0.42878094817412626 \\
- -0.8988154723665072 -0.4383272141158619 \\
- }
- ;
- \addlegendentry {transformation.jl line 34}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={9a36617e-4b4f-4f0e-a68d-5501a2290bb0}, area legend, fill={rgb,1:red,0.6755;green,0.5557;blue,0.0942}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.8988154723665072 -0.4383272141158619 \\
- -0.8956441548266424 -0.4447713434168949 \\
- -0.8924266363272968 -0.4511925296074246 \\
- -0.889163082841129 -0.45759044145661476 \\
- -0.8858536627154694 -0.4639647489342131 \\
- -0.8824985466636359 -0.4703151232275764 \\
- -0.8790979077561272 -0.4766412367586335 \\
- -0.875651921411696 -0.4829427632007802 \\
- -0.8721607653882996 -0.4892193774957157 \\
- -0.8686246197739304 -0.49547075587020756 \\
- -0.8650436669773273 -0.5016965758527946 \\
- -0.8614180917185642 -0.5078965162904223 \\
- -0.8577480810195237 -0.5140702573650071 \\
- -0.8540338241942484 -0.5202174806099344 \\
- -0.8502755128391752 -0.5263378689264887 \\
- -0.8464733408232531 -0.5324311066002069 \\
- -0.842627504277941 -0.5384968793171679 \\
- -0.8387382015870923 -0.5445348741802035 \\
- -0.8348056333767205 -0.5505447797250397 \\
- -0.8308300025046493 -0.5565262859363648 \\
- -0.8268115140500499 -0.5624790842638187 \\
- -0.8227503753028618 -0.5684028676379106 \\
- -0.8186467957530985 -0.5742973304858595 \\
- -0.8145009870800434 -0.5801621687473555 \\
- -0.8103131631413291 -0.5859970798902446 \\
- -0.8060835399619056 -0.5918017629261364 \\
- -0.8018123357228981 -0.5975759184259273 \\
- -0.7974997707503508 -0.6033192485352492 \\
- -0.793146067503863 -0.6090314569898321 \\
- -0.788751450565113 -0.6147122491307866 \\
- -0.7843161466262725 -0.6203613319198058 \\
- -0.7798403844783148 -0.6259784139542784 \\
- -0.7753243949992118 -0.6315632054823224 \\
- -0.7707684111420232 -0.6371154184177314 \\
- -0.7661726679228822 -0.6426347663548346 \\
- -0.7615374024088709 -0.6481209645832708 \\
- -0.756862853705791 -0.6535737301026766 \\
- -0.7521492629458316 -0.6589927816372818 \\
- -0.7473968732751286 -0.6643778396504216 \\
- -0.7426059298412236 -0.6697286263589541 \\
- -0.7377766797804179 -0.6750448657475906 \\
- -0.7329093722050234 -0.6803262835831336 \\
- -0.7280042581905135 -0.6855726074286225 \\
- -0.7230615907625714 -0.6907835666573864 \\
- -0.7180816248840366 -0.6959588924670062 \\
- -0.7130646174417555 -0.7010983178931774 \\
- -0.7080108272333273 -0.7062015778234849 \\
- -0.7029205149537564 -0.711268409011075 \\
- -0.6977939431820039 -0.7162985500882368 \\
- -0.6926313763674417 -0.7212917415798848 \\
- }
- ;
- \addlegendentry {transformation.jl line 98}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={9c4eee15-5e25-4cf0-abab-2af7f1c3bd33}, area legend, fill={rgb,1:red,0.0;green,0.6658;blue,0.681}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.6926313763674417 -0.7212917415798848 \\
- -0.6874517094139488 -0.7262300924802275 \\
- -0.6822368337554063 -0.7311312485917956 \\
- -0.6769870164782387 -0.7359949588957068 \\
- -0.6717025264584489 -0.7408209742909124 \\
- -0.6663836343478489 -0.7456090476069563 \\
- -0.6610306125601959 -0.7503589336166341 \\
- -0.6556437352572424 -0.7550703890485515 \\
- -0.6502232783346936 -0.7597431725995855 \\
- -0.6447695194080775 -0.7643770449472411 \\
- -0.6392827377985246 -0.7689717687619115 \\
- -0.6337632145184665 -0.7735271087190289 \\
- -0.6282112322572374 -0.7780428315111214 \\
- -0.6226270753666024 -0.7825187058597585 \\
- -0.6170110298461876 -0.7869545025273996 \\
- -0.6113633833288385 -0.791349994329131 \\
- -0.6056844250658825 -0.7957049561443057 \\
- -0.5999744459123202 -0.8000191649280687 \\
- -0.5942337383119243 -0.8042923997227845 \\
- -0.5884625962822635 -0.8085244416693522 \\
- -0.582661315399646 -0.8127150740184127 \\
- -0.5768301927839772 -0.8168640821414538 \\
- -0.5709695270835463 -0.8209712535417982 \\
- -0.5650796184597267 -0.8250363778654913 \\
- -0.5591607685716073 -0.8290592469120704 \\
- -0.5532132805605388 -0.8330396546452316 \\
- -0.5472374590346086 -0.8369773972033804 \\
- -0.5412336100530436 -0.8408722729100716 \\
- -0.5352020411105287 -0.844724082284342 \\
- -0.529143061121465 -0.8485326280509227 \\
- -0.5230569804041415 -0.8522977151503467 \\
- -0.5169441106648482 -0.8560191507489358 \\
- -0.5108047649819056 -0.8596967442486799 \\
- -0.5046392577896361 -0.8633303072969958 \\
- -0.4984479048622544 -0.8669196537963764 \\
- -0.49223102329769697 -0.8704645999139208 \\
- -0.4859889315013841 -0.8739649640907483 \\
- -0.4797219491699067 -0.8774205670513003 \\
- -0.47343039727465874 -0.8808312318125185 \\
- -0.4671145980453924 -0.8841967836929128 \\
- -0.4607748749537206 -0.8875170503215041 \\
- -0.45441155269654476 -0.8907918616466561 \\
- -0.4480249571794272 -0.8940210499447832 \\
- -0.44161541549990196 -0.8972044498289389 \\
- -0.43518325593071655 -0.90034189825729 \\
- -0.42872880790302537 -0.9034332345414634 \\
- -0.4222524019895109 -0.9064783003547787 \\
- -0.41575436988745995 -0.9094769397403549 \\
- -0.4092350444017683 -0.9124289991191001 \\
- -0.40269475942790245 -0.9153343272975748 \\
- }
- ;
- \addlegendentry {transformation.jl line 108}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={a71d56c8-88b9-4754-a48c-b09fd70e3a0f}, area legend, fill={rgb,1:red,0.9308;green,0.3675;blue,0.5758}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.40269475942790245 -0.9153343272975748 \\
- -0.3962045058567997 -0.918162289325133 \\
- -0.3896943942144911 -0.9209442323603535 \\
- -0.3831647507927255 -0.9236800169701348 \\
- -0.37661590286219726 -0.9263695060348716 \\
- -0.3700481786561452 -0.9290125647553265 \\
- -0.3634619073539038 -0.9316090606593853 \\
- -0.35685741906439983 -0.9341588636086987 \\
- -0.3502350448096091 -0.9366618458052036 \\
- -0.34359511650796837 -0.939117881797528 \\
- -0.33693796695773376 -0.9415268484872797 \\
- -0.3302639298203037 -0.9438886251352167 \\
- -0.3235733396034978 -0.9462030933672958 \\
- -0.3168665316447852 -0.9484701371806096 \\
- -0.3101438420944839 -0.9506896429491971 \\
- -0.3034056078989071 -0.9528614994297412 \\
- -0.2966521667834771 -0.9549855977671433 \\
- -0.2898838572358013 -0.9570618314999787 \\
- -0.28310101848870173 -0.9590900965658334 \\
- -0.2763039905032148 -0.9610702913065201 \\
- -0.26949311395155506 -0.9630023164731714 \\
- -0.26266873020003506 -0.9648860752312167 \\
- -0.2558311812919585 -0.9667214731652344 \\
- -0.24898080993047936 -0.9685084182836835 \\
- -0.24211795946142012 -0.9702468210235157 \\
- -0.23524297385606563 -0.9719365942546635 \\
- -0.2283561976939256 -0.9735776532844069 \\
- -0.22145797614545878 -0.9751699158616192 \\
- -0.21454865495477546 -0.976713302180889 \\
- -0.20762858042231097 -0.9782077348865199 \\
- -0.20069809938746375 -0.9796531390764078 \\
- -0.19375755921121407 -0.9810494423057957 \\
- -0.18680730775871657 -0.9823965745909032 \\
- -0.17984769338185985 -0.9836944684124357 \\
- -0.17287906490180946 -0.9849430587189677 \\
- -0.16590177159152722 -0.9861422829302031 \\
- -0.15891616315826018 -0.9872920809401123 \\
- -0.15192258972601574 -0.9883923951199446 \\
- -0.14492140181801574 -0.9894431703211162 \\
- -0.13791295033912176 -0.9904443538779748 \\
- -0.13089758655825467 -0.9913958956104388 \\
- -0.12387566209078249 -0.9922977478265131 \\
- -0.11684752888089985 -0.9931498653246786 \\
- -0.1098135391839909 -0.9939522053961579 \\
- -0.10277404554896877 -0.9947047278270564 \\
- -0.09572940080060811 -0.9954073949003778 \\
- -0.08867995802186399 -0.9960601713979134 \\
- -0.08162607053616969 -0.9966630246020087 \\
- -0.07456809188973065 -0.9972159242972028 \\
- -0.06750637583380703 -0.9977188427717424 \\
- }
- ;
- \addlegendentry {transformation.jl line 79}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={489c1bed-2270-4345-bfdc-54e6204bf991}, area legend, fill={rgb,1:red,0.777;green,0.5097;blue,0.1464}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.06750637583380703 -0.9977188427717424 \\
- -0.06047968209505271 -0.998169428530889 \\
- -0.05344998992773577 -0.9985705275926808 \\
- -0.04641764784608699 -0.9989221200716484 \\
- -0.03938300449571045 -0.9992241885367321 \\
- -0.03234640863630219 -0.9994767180121473 \\
- -0.025308209124357772 -0.9996796959781257 \\
- -0.018268754895880424 -0.9998331123715368 \\
- -0.011228394949076369 -0.999936959586387 \\
- -0.004187478327055034 -0.9999912324741954 \\
- 0.0028536458994729524 -0.999995928344251 \\
- 0.00989462864950712 -0.9999510469637443 \\
- 0.01693512084906016 -0.9998565905577798 \\
- 0.023974773448465887 -0.9997125638092655 \\
- 0.031013237439680694 -0.9995189738586807 \\
- 0.0380501638735918 -0.9992758303037219 \\
- 0.04508520387731461 -0.9989831451988271 \\
- 0.05211800867148624 -0.9986409330545784 \\
- 0.05914822958756251 -0.9982492108369818 \\
- 0.06617551808510039 -0.9978079979666271 \\
- 0.07319952576903963 -0.9973173163177242 \\
- 0.08021990440697166 -0.9967771902170195 \\
- 0.08723630594640945 -0.9961876464425888 \\
- 0.09424838253204036 -0.9955487142225107 \\
- 0.10125578652296932 -0.9948604252334168 \\
- 0.10825817050995921 -0.9941228135989217 \\
- 0.11525518733265108 -0.9933359158879314 \\
- 0.12224649009677716 -0.9924997711128293 \\
- 0.1292317321913555 -0.9916144207275436 \\
- 0.13621056730587938 -0.9906799086254906 \\
- 0.14318264944748382 -0.9896962811373997 \\
- 0.15014763295809636 -0.988663587029016 \\
- 0.15710517253157924 -0.9875818774986825 \\
- 0.16405492323084528 -0.9864512061748019 \\
- 0.17099654050496071 -0.9852716291131778 \\
- 0.1779296802062236 -0.9840432047942361 \\
- 0.18485399860723115 -0.9827659941201251 \\
- 0.19176915241791814 -0.9814400604116958 \\
- 0.19867479880257372 -0.9800654694053642 \\
- 0.20557059539684372 -0.9786422892498501 \\
- 0.21245620032470053 -0.9771705905028 \\
- 0.2193312722153943 -0.9756504461272882 \\
- 0.22619547022037373 -0.9740819314882009 \\
- 0.23304845403018964 -0.9724651243484974 \\
- 0.2398898838913641 -0.9708001048653568 \\
- 0.24671942062323193 -0.9690869555862037 \\
- 0.2535367256347616 -0.9673257614446147 \\
- 0.2603414609413382 -0.9655166097561085 \\
- 0.26713328918152174 -0.9636595902138169 \\
- 0.27391187363376895 -0.9617547948840381 \\
- }
- ;
- \addlegendentry {transformation.jl line 89}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={eda61845-812f-4840-b8b4-22b4e9370bc8}, area legend, fill={rgb,1:red,0.0;green,0.6643;blue,0.553}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.27391187363376895 -0.9617547948840381 \\
- 0.2991987056893235 -0.9541908270958349 \\
- 0.32427710471129867 -0.9459621342104859 \\
- 0.3491296001468943 -0.9370744486439002 \\
- 0.3737388788162156 -0.9275339618909909 \\
- 0.3980877969732863 -0.9173473202124458 \\
- 0.4221593922490199 -0.9065216200046958 \\
- 0.4459368954678451 -0.8950644028562974 \\
- 0.46940374232974114 -0.8829836502941796 \\
- 0.4925435849495503 -0.8702877782234134 \\
- 0.5153403032455265 -0.8569856310643772 \\
- 0.5377780161691917 -0.8430864755914002 \\
- 0.5598410927686649 -0.8285999944771827 \\
- 0.581514163077772 -0.8135362795474818 \\
- 0.6027821288233403 -0.7979058247507672 \\
- 0.6236301739432204 -0.7817195188477442 \\
- 0.644043774907711 -0.7649886378258345 \\
- 0.6640087108371959 -0.7477248370438989 \\
- 0.6835110734089382 -0.7299401431126809 \\
- 0.7025372765461418 -0.7116469455166163 \\
- 0.7210740658825211 -0.6928579879828547 \\
- 0.7391085279957892 -0.6735863596035015 \\
- 0.756628099403632 -0.6538454857172661 \\
- 0.7736205753159022 -0.6336491185568655 \\
- 0.7900741181369312 -0.6130113276687068 \\
- 0.8059772657120433 -0.591946490111512 \\
- 0.8213189393125225 -0.5704692804407201 \\
- 0.8360884513534698 -0.5485946604856418 \\
- 0.850275512839175 -0.526337868926489 \\
- 0.8638702405308187 -0.5037144106785365 \\
- 0.8768631638315044 -0.48074004609082055 \\
- 0.8892452313838326 -0.45743077996688647 \\
- 0.9010078173754155 -0.43380285041524325 \\
- 0.9121427275479415 -0.4098727175372884 \\
- 0.9226422049056018 -0.3856570519605852 \\
- 0.9324989351189064 -0.3611727232254753 \\
- 0.9417060516201173 -0.3364367880331296 \\
- 0.9502571403867595 -0.3114664783632075 \\
- 0.9581462444098682 -0.28627918946941494 \\
- 0.9653678678438647 -0.2608924677613182 \\
- 0.9719169798351689 -0.23532399858085867 \\
- 0.9777890180268801 -0.209591593882077 \\
- 0.9829798917370859 -0.18371317982264335 \\
- 0.9874859848085844 -0.1577067842758208 \\
- 0.9913041581280351 -0.13159052427157378 \\
- 0.9944317518127829 -0.10538259337556592 \\
- 0.9968665870638318 -0.07910124901484113 \\
- 0.9986069676836785 -0.052764799759012056 \\
- 0.9996516812579466 -0.02639159256582947 \\
- 1.0 -2.4492935982947064e-16 \\
- }
- ;
- \addlegendentry {others .< 5.0}
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/mallocs/mallocs-0.3.1.csv b/perf/mallocs/mallocs-0.3.1.csv
deleted file mode 100644
index 90331e2..0000000
--- a/perf/mallocs/mallocs-0.3.1.csv
+++ /dev/null
@@ -1,121 +0,0 @@
-bytes,ratio (%),filename: [C:\Users\jeanf\.julia\dev\CompositionalNetworks\src\,linenumber
-1547005022,22.68,metrics.jl,5
-1064788102,15.61,icn.jl,157
-815071772,11.95,transformation.jl,44
-553822261,8.12,transformation.jl,34
-384883936,5.64,transformation.jl,98
-373037216,5.47,transformation.jl,89
-352800733,5.17,transformation.jl,79
-340952896,5.0,aggregation.jl,11
-331001408,4.85,transformation.jl,108
-264555469,3.88,icn.jl,158
-111246062,1.63,genetic.jl,34
-107733192,1.58,icn.jl,147
-77903329,1.14,utils.jl,65
-70441185,1.03,utils.jl,66
-39195390,0.57,icn.jl,156
-34157543,0.5,arithmetic.jl,5
-24695272,0.36,arithmetic.jl,11
-24037835,0.35,icn.jl,143
-18653111,0.27,layer.jl,20
-16921008,0.25,comparison.jl,38
-16823920,0.25,icn.jl,98
-15752786,0.23,icn.jl,59
-15409565,0.23,icn.jl,65
-14781248,0.22,icn.jl,131
-14546913,0.21,comparison.jl,57
-14392880,0.21,icn.jl,63
-13603520,0.2,comparison.jl,5
-12599520,0.18,icn.jl,76
-12292907,0.18,icn.jl,77
-11728965,0.17,icn.jl,136
-11418848,0.17,icn.jl,104
-10746352,0.16,icn.jl,151
-9172240,0.13,layer.jl,32
-8198784,0.12,icn.jl,101
-7995947,0.12,icn.jl,61
-7760065,0.11,icn.jl,133
-7484000,0.11,composition.jl,25
-7299792,0.11,aggregation.jl,5
-6967323,0.1,comparison.jl,51
-6613952,0.1,icn.jl,103
-4279808,0.06,comparison.jl,45
-4187403,0.06,icn.jl,138
-3488336,0.05,icn.jl,139
-3125552,0.05,icn.jl,146
-2851360,0.04,composition.jl,24
-2177264,0.03,icn.jl,150
-1903504,0.03,icn.jl,102
-1868432,0.03,icn.jl,144
-1802128,0.03,utils.jl,68
-1549984,0.02,icn.jl,99
-1449328,0.02,icn.jl,137
-1439328,0.02,genetic.jl,32
-1233407,0.02,icn.jl,135
-1135072,0.02,icn.jl,145
-1131408,0.02,icn.jl,107
-989120,0.01,composition.jl,23
-921824,0.01,icn.jl,117
-669968,0.01,icn.jl,142
-654800,0.01,icn.jl,163
-650368,0.01,icn.jl,60
-646720,0.01,icn.jl,126
-618304,0.01,genetic.jl,33
-606208,0.01,icn.jl,141
-603088,0.01,icn.jl,125
-577744,0.01,icn.jl,132
-570112,0.01,icn.jl,100
-532176,0.01,genetic.jl,31
-318352,0.0,icn.jl,155
-310416,0.0,icn.jl,78
-251440,0.0,genetic.jl,7
-165248,0.0,icn.jl,67
-86928,0.0,genetic.jl,50
-76288,0.0,genetic.jl,27
-37776,0.0,icn.jl,26
-16416,0.0,utils.jl,53
-13200,0.0,layer.jl,85
-9824,0.0,utils.jl,48
-4128,0.0,utils.jl,54
-3872,0.0,layer.jl,69
-3504,0.0,utils.jl,50
-3360,0.0,genetic.jl,52
-2912,0.0,explore.jl,52
-2784,0.0,icn.jl,27
-2688,0.0,utils.jl,52
-2320,0.0,genetic.jl,51
-2256,0.0,genetic.jl,40
-1248,0.0,layer.jl,66
-800,0.0,utils.jl,51
-624,0.0,layer.jl,67
-624,0.0,genetic.jl,38
-480,0.0,layer.jl,68
-448,0.0,utils.jl,47
-384,0.0,explore.jl,46
-384,0.0,explore.jl,45
-368,0.0,utils.jl,56
-336,0.0,learn.jl,36
-272,0.0,genetic.jl,76
-224,0.0,utils.jl,81
-208,0.0,layer.jl,71
-192,0.0,learn.jl,39
-160,0.0,genetic.jl,30
-144,0.0,learn.jl,34
-144,0.0,genetic.jl,72
-128,0.0,genetic.jl,73
-80,0.0,explore.jl,50
-32,0.0,genetic.jl,95
-32,0.0,explore.jl,26
-0,0.0,learn.jl,35
-0,0.0,learn.jl,21
-0,0.0,learn.jl,20
-0,0.0,genetic.jl,98
-0,0.0,genetic.jl,97
-0,0.0,genetic.jl,96
-0,0.0,genetic.jl,78
-0,0.0,genetic.jl,77
-0,0.0,genetic.jl,74
-0,0.0,explore.jl,55
-0,0.0,explore.jl,51
-0,0.0,explore.jl,24
-0,0.0,explore.jl,23
diff --git a/perf/mallocs/mallocs-0.3.1.pdf b/perf/mallocs/mallocs-0.3.1.pdf
deleted file mode 100644
index 8535b39..0000000
Binary files a/perf/mallocs/mallocs-0.3.1.pdf and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.3.1.png b/perf/mallocs/mallocs-0.3.1.png
deleted file mode 100644
index 5f102ee..0000000
Binary files a/perf/mallocs/mallocs-0.3.1.png and /dev/null differ
diff --git a/perf/mallocs/mallocs-0.3.1.svg b/perf/mallocs/mallocs-0.3.1.svg
deleted file mode 100644
index 5105298..0000000
--- a/perf/mallocs/mallocs-0.3.1.svg
+++ /dev/null
@@ -1,511 +0,0 @@
-
-
-
diff --git a/perf/mallocs/mallocs-0.3.1.tikz b/perf/mallocs/mallocs-0.3.1.tikz
deleted file mode 100644
index e44a74d..0000000
--- a/perf/mallocs/mallocs-0.3.1.tikz
+++ /dev/null
@@ -1,526 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Mallocs for CompositionalNetworks.jl@v0.3.1}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorticks={false}, xmajorgrids={false}, xmin={-1.5378213433331034}, xmax={1.537821417353911}, x axis line style={{draw opacity = 0}}, scaled y ticks={false}, ylabel={}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymajorticks={false}, ymajorgrids={false}, ymin={-1.0599964977388252}, ymax={1.0599852151906226}, y axis line style={{draw opacity = 0}}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={e2068718-7540-4c6a-a83f-049613b18d91}, area legend, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 1.0 0.0 \\
- 0.9995769742592671 0.029083887819349657 \\
- 0.998308254938623 0.05814316917232297 \\
- 0.9961949154399284 0.08715325841088091 \\
- 0.9932387437571972 0.11608961150604577 \\
- 0.989442240963861 0.14492774681341314 \\
- 0.9848086190967325 0.1736432657858835 \\
- 0.9793417984384567 0.20221187361608914 \\
- 0.9730464042007507 0.23060939979105194 \\
- 0.9659277626112357 0.25881181854168156 \\
- 0.9579918964071744 0.2867952691698131 \\
- 0.9492455197399257 0.3145360762355861 \\
- 0.939696032494426 0.3420107695880856 \\
- 0.929351514028507 0.3691961042222978 \\
- 0.9182207163373416 0.3960690799455813 \\
- 0.9063130566488063 0.42260696083701405 \\
- 0.8936386094560216 0.4487872944831529 \\
- 0.8802080979938114 0.47458793097393115 \\
- 0.8660328851662954 0.4999870416426232 \\
- 0.8511249639332863 0.5249631375340197 \\
- 0.8354969471636289 0.5494950875851906 \\
- 0.8191620569640635 0.5735621365034519 \\
- 0.8021341134926431 0.5971439223264117 \\
- 0.7844275232661679 0.6202204936492389 \\
- 0.7660572669715309 0.6427723265045787 \\
- 0.7470388867912847 0.6647803408808342 \\
- 0.7273884732541563 0.6862259168648379 \\
- 0.7071226516216302 0.707090910395258 \\
- 0.6862585678221214 0.727357668613407 \\
- 0.6648138739446381 0.7470090447984702 \\
- 0.6428067133042049 0.7660284128745132 \\
- 0.6202557050916846 0.7843996814769989 \\
- 0.5971799286209836 0.8021073075669096 \\
- 0.5735989071869713 0.8191363095809587 \\
- 0.5495325915477662 0.8354722801067644 \\
- 0.5250013430453685 0.8511013980722621 \\
- 0.5000259163789156 0.8660104404390433 \\
- 0.47462744204513907 0.8801867933897259 \\
- 0.4488274084608758 0.8936184629998947 \\
- 0.42264764378276193 0.906294085385577 \\
- 0.3961102974394874 0.9182029363176752 \\
- 0.3692378213922405 0.9293349402952156 \\
- 0.3420529511391913 0.9396806790697412 \\
- 0.314578686480091 0.9492313996136351 \\
- 0.28683827205725687 0.9579790215256319 \\
- 0.25885517768940736 0.9659161438672538 \\
- 0.23065307851498887 0.973036051424385 \\
- 0.2022558349617879 0.9793327203886889 \\
- 0.1736874725597826 0.9848008234540601 \\
- 0.14497216161430582 0.9894357343237992 \\
- }
- ;
- \addlegendentry {metrics.jl line 5}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={04ab93fc-480e-42fb-9d71-29f4adb2a67e}, area legend, fill={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.14497216161430582 0.9894357343237992 \\
- 0.1251354960729875 0.9921396613494329 \\
- 0.1052486756590855 0.9944459343131775 \\
- 0.08531967110013366 0.9963536288504022 \\
- 0.06535647003126097 0.9978619803485114 \\
- 0.045367073793713034 0.9989703842534051 \\
- 0.02535949422787686 0.999678396311787 \\
- 0.0053417504620996495 0.9999857327492231 \\
- -0.014678134301413447 0.9998922703838797 \\
- -0.03469213600233637 0.9993980466758955 \\
- -0.054692232938301145 0.998503259712367 \\
- -0.0746704089800318 0.9972082681279547 \\
- -0.09461865678424676 0.9955135909611404 \\
- -0.11452898100303646 0.9934199074461947 \\
- -0.1343934014884365 0.9909280567409361 \\
- -0.15420395649090643 0.9880390375903934 \\
- -0.17395270585043407 0.9847540079265036 \\
- -0.19363173417898943 0.9810742844040085 \\
- -0.21323315403304594 0.9770013418727321 \\
- -0.2327491090749052 0.9725368127864559 \\
- -0.25217177722155193 0.967682486548622 \\
- -0.2714933737797796 0.962440308795134 \\
- -0.2907061545663321 0.9568123806145361 \\
- -0.30980241901180566 0.9508009577058879 \\
- -0.32877451324707363 0.9444084494746697 \\
- -0.34761483317099084 0.9376374180670821 \\
- -0.3663158274981512 0.9304905773431263 \\
- -0.38487000078547867 0.9229707917888765 \\
- -0.40326991643643334 0.9150810753683807 \\
- -0.42150819968163306 0.9068245903156511 \\
- -0.43957754053469517 0.8982046458672257 \\
- -0.4574706967221118 0.8892246969358114 \\
- -0.47518049658598455 0.8798883427255398 \\
- -0.4926998419584594 0.8701993252893897 \\
- -0.5100217110067035 0.8601615280293549 \\
- -0.5271391610472873 0.8497789741399596 \\
- -0.5440453313288439 0.8390558249957439 \\
- -0.5607334457818892 0.8279963784833657 \\
- -0.5771968157347004 0.8166050672789892 \\
- -0.593428842594167 0.8048864570716465 \\
- -0.6094230204905362 0.7928452447332907 \\
- -0.625172938884995 0.780486256436267 \\
- -0.6406722851390434 0.7678144457189616 \\
- -0.655914847044627 0.754834891500402 \\
- -0.6708945153140203 0.741552796044601 \\
- -0.6856052860284558 0.727973482875468 \\
- -0.7000412630445211 0.7141023946431153 \\
- -0.7141966603573613 0.6999450909424195 \\
- -0.7280658044197339 0.6855072460847119 \\
- -0.7416431364159944 0.670794646823487 \\
- }
- ;
- \addlegendentry {icn.jl line 157}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={a863ec82-fb4a-4375-b5ce-047676edfed5}, area legend, fill={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.7416431364159944 0.670794646823487 \\
- -0.7518364601566795 0.6593496319700752 \\
- -0.7618531833667648 0.6477497410218909 \\
- -0.7716909531959593 0.6359976987029998 \\
- -0.7813474588287288 0.6240962654766393 \\
- -0.7908204320270869 0.6120482368968084 \\
- -0.8001076476633866 0.5998564429516133 \\
- -0.8092069242429866 0.5875237473985246 \\
- -0.8181161244166661 0.5750530470917045 \\
- -0.826833155482673 0.5624472713015558 \\
- -0.8353559698782815 0.5497093810266618 \\
- -0.8436825656607497 0.5368423682982695 \\
- -0.8518109869775602 0.5238492554774844 \\
- -0.8597393245258345 0.5107330945453427 \\
- -0.8674657160008137 0.49749696638592245 \\
- -0.8749883465332989 0.4841439800626706 \\
- -0.8823054491159502 0.47067727208810656 \\
- -0.8894153050183427 0.45710000568708 \\
- -0.8963162441906828 0.4434153700537547 \\
- -0.9030066456560911 0.4296265796024899 \\
- -0.9094849378913555 0.4157368732128018 \\
- -0.9157495991960706 0.40174951346857435 \\
- -0.9217991580500732 0.38766778589170414 \\
- -0.9276321934590912 0.37349499817035736 \\
- -0.9332473352885239 0.35923447938201786 \\
- -0.9386432645852757 0.34488957921151525 \\
- -0.9438187138875681 0.3304636671642085 \\
- -0.9487724675226566 0.315960131774516 \\
- -0.953503361892383 0.3013823798099736 \\
- -0.9580102857464953 0.28673383547101405 \\
- -0.9622921804436713 0.2720179395866472 \\
- -0.9663480402001862 0.2572381488062365 \\
- -0.9701769123261623 0.24239793478755953 \\
- -0.9737778974493497 0.22750078338134055 \\
- -0.9771501497263806 0.21255019381245432 \\
- -0.9802928770414518 0.19754967785798347 \\
- -0.9832053411923867 0.18250275902232982 \\
- -0.9858868580640328 0.16741297170957115 \\
- -0.9883367977889559 0.15228386039325542 \\
- -0.9905545848953901 0.13711897878383414 \\
- -0.9925396984424119 0.12192188899392176 \\
- -0.9942916721423055 0.10669616070158348 \\
- -0.9958100944700898 0.09144537031184626 \\
- -0.997094608760183 0.07617310011662722 \\
- -0.9981449132901793 0.06088293745328389 \\
- -0.9989607613517226 0.045578473861974805 \\
- -0.9995419613084555 0.030263304242035143 \\
- -0.9998883766410335 0.014941026007563276 \\
- -0.9999999259791922 -0.00038476175758555225 \\
- -0.9998765831208606 -0.015710459145193326 \\
- }
- ;
- \addlegendentry {transformation.jl line 44}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={b1259437-983d-4e28-96f9-3b81339fee0d}, area legend, fill={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.9998765831208606 -0.015710459145193326 \\
- -0.9996587531333524 -0.026122352188715503 \\
- -0.9993325051891084 -0.03653141213340215 \\
- -0.9988978746713388 -0.04693651006500407 \\
- -0.9983549087178818 -0.057336517498972527 \\
- -0.9977036662160916 -0.06773030650284717 \\
- -0.9969442177964523 -0.07811674981858864 \\
- -0.9960766458249166 -0.08849472098483348 \\
- -0.9951010443939741 -0.09886309445906491 \\
- -0.9940175193124452 -0.10922074573968357 \\
- -0.9928261880940066 -0.11956655148796562 \\
- -0.9915271799444457 -0.12989938964989278 \\
- -0.9901206357476484 -0.14021813957784718 \\
- -0.9886067080503183 -0.15052168215214948 \\
- -0.9869855610454336 -0.16080889990243338 \\
- -0.9852573705544383 -0.17107867712884084 \\
- -0.9834223240081748 -0.18132990002302565 \\
- -0.981480620426555 -0.1915614567889498 \\
- -0.9794324703969761 -0.20177223776346587 \\
- -0.9772780960514812 -0.21196113553666376 \\
- -0.9750177310426681 -0.22212704507197523 \\
- -0.9726516205183485 -0.23226886382602066 \\
- -0.9701800210949604 -0.2423854918681857 \\
- -0.9676032008297368 -0.25247583199991247 \\
- -0.9649214391916338 -0.262538789873699 \\
- -0.9621350270310202 -0.2725732741117846 \\
- -0.9592442665481341 -0.28257819642451587 \\
- -0.9562494712603072 -0.29255247172837695 \\
- -0.9531509659679626 -0.30249501826367287 \\
- -0.9499490867193886 -0.31240475771184983 \\
- -0.9466441807742921 -0.32228061531244684 \\
- -0.9432366065661374 -0.33212151997965716 \\
- -0.9397267336632714 -0.34192640441849326 \\
- -0.9361149427288429 -0.3516942052405403 \\
- -0.9324016254795169 -0.3614238630792863 \\
- -0.9285871846429924 -0.37111432270501393 \\
- -0.9246720339143227 -0.3807645331392481 \\
- -0.9206565979110498 -0.39037344776873784 \\
- -0.9165413121271514 -0.3999400244589676 \\
- -0.91232662288581 -0.40946322566718135 \\
- -0.9080129872910064 -0.41894201855491003 \\
- -0.9036008731779457 -0.42837537509998636 \\
- -0.8990907590623167 -0.43776227220804115 \\
- -0.8944831340883954 -0.4471016918234616 \\
- -0.8897784979759947 -0.4563926210398047 \\
- -0.8849773609662672 -0.4656340522096522 \\
- -0.8800802437663672 -0.4748249830538951 \\
- -0.8750876774929774 -0.48396441677043434 \\
- -0.8700002036147066 -0.49305136214229145 \\
- -0.8648183738933645 -0.5020848336451091 \\
- }
- ;
- \addlegendentry {transformation.jl line 34}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={8cd01106-62ec-4690-ae19-8cfa4a3988c7}, area legend, fill={rgb,1:red,0.6755;green,0.5557;blue,0.0942}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.8648183738933645 -0.5020848336451091 \\
- -0.8611639390604885 -0.50832732570837 \\
- -0.8574644450291768 -0.5145432202554084 \\
- -0.8537200853702795 -0.5207321920482376 \\
- -0.8499310560021778 -0.5268939172575661 \\
- -0.8460975551805325 -0.5330280734797423 \\
- -0.8422197834879122 -0.5391343397536223 \\
- -0.8382979438232956 -0.5452123965773658 \\
- -0.8343322413914571 -0.5512619259251516 \\
- -0.8303228836922288 -0.5572826112638195 \\
- -0.8262700805096437 -0.5632741375694316 \\
- -0.8221740439009589 -0.5692361913437551 \\
- -0.81803498818556 -0.5751684606306667 \\
- -0.813853129933747 -0.5810706350324747 \\
- -0.8096286879554033 -0.5869424057261599 \\
- -0.8053618832885455 -0.5927834654795351 \\
- -0.8010529391877595 -0.5985935086673189 \\
- -0.7967020811125174 -0.6043722312871297 \\
- -0.7923095367153815 -0.6101193309753901 \\
- -0.7878755358300927 -0.6158345070231485 \\
- -0.7834003104595447 -0.621517460391813 \\
- -0.7788840947636447 -0.6271678937287987 \\
- -0.7743271250470612 -0.6327855113830854 \\
- -0.7697296397468599 -0.6383700194206877 \\
- -0.7650918794200279 -0.6439211256400348 \\
- -0.7604140867308861 -0.6494385395872596 \\
- -0.7556965064383938 -0.6549219725713947 \\
- -0.7509393853833403 -0.6603711376794804 \\
- -0.7461429724754298 -0.6657857497915751 \\
- -0.7413075186802585 -0.6711655255956747 \\
- -0.7364332770061816 -0.6765101836025358 \\
- -0.7315205024910763 -0.6818194441604049 \\
- -0.7265694521889965 -0.6870930294696501 \\
- -0.7215803851567234 -0.6923306635972978 \\
- -0.7165535624402104 -0.6975320724914686 \\
- -0.7114892470609236 -0.7026969839957191 \\
- -0.7063877040020816 -0.7078251278632791 \\
- -0.7012492001947881 -0.7129162357711949 \\
- -0.6960740045040665 -0.717970041334367 \\
- -0.6908623877147919 -0.7229862801194892 \\
- -0.6856146225175224 -0.7279646896588841 \\
- -0.6803309834942306 -0.7329050094642368 \\
- -0.6750117471039373 -0.7378069810402246 \\
- -0.6696571916682456 -0.742670347898042 \\
- -0.6642675973567781 -0.7474948555688214 \\
- -0.6588432461725175 -0.7522802516169486 \\
- -0.6533844219370526 -0.7570262856532682 \\
- -0.6478914102757234 -0.76173270934819 \\
- -0.6423644986026827 -0.7663992764446768 \\
- -0.6368039761058507 -0.7710257427711341 \\
- }
- ;
- \addlegendentry {transformation.jl line 98}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={7437d4a7-5bd0-487c-8126-d9b35ad1a5f5}, area legend, fill={rgb,1:red,0.0;green,0.6658;blue,0.681}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.6368039761058507 -0.7710257427711341 \\
- -0.6313792266762053 -0.7754742240215061 \\
- -0.6259234027234699 -0.7798845388408934 \\
- -0.6204367727663417 -0.7842564701673088 \\
- -0.6149196068396936 -0.7885898028278813 \\
- -0.6093721764812844 -0.7928843235494459 \\
- -0.6037947547183936 -0.7971398209690411 \\
- -0.5981876160543855 -0.8013560856443103 \\
- -0.5925510364551957 -0.805532910063812 \\
- -0.5868852933357531 -0.8096700886572302 \\
- -0.5811906655463239 -0.8137674178054938 \\
- -0.5754674333587879 -0.8178246958507972 \\
- -0.5697158784528445 -0.8218417231065259 \\
- -0.5639362839021492 -0.8258183018670842 \\
- -0.5581289341603818 -0.8297542364176251 \\
- -0.5522941150472461 -0.833649333043684 \\
- -0.5464321137344031 -0.8375034000407117 \\
- -0.5405432187313375 -0.8413162477235094 \\
- -0.5346277198711571 -0.8450876884355656 \\
- -0.5286859082963303 -0.8488175365582901 \\
- -0.5227180764443531 -0.8525056085201524 \\
- -0.5167245180333607 -0.8561517228057134 \\
- -0.510705528047669 -0.8597556999645606 \\
- -0.504661402723257 -0.8633173626201401 \\
- -0.49859243953318677 -0.8668365354784866 \\
- -0.4924989371729631 -0.8703130453368499 \\
- -0.48638119554583237 -0.8737467210922206 \\
- -0.4802395157480223 -0.8771373937497506 \\
- -0.47407420005392314 -0.8804848964310704 \\
- -0.46788555190121034 -0.8837890643825029 \\
- -0.4616738758759104 -0.8870497349831713 \\
- -0.4554394776974111 -0.8902667477530032 \\
- -0.44918266420341146 -0.8934399443606298 \\
- -0.4429037433348251 -0.8965691686311767 \\
- -0.4366030241206211 -0.8996542665539515 \\
- -0.43028081666261525 -0.9026950862900235 \\
- -0.42393743212020807 -0.9056914781796966 \\
- -0.4175731826950704 -0.9086432947498756 \\
- -0.4111883816157774 -0.9115503907213236 \\
- -0.4047833431223933 -0.9144126230158127 \\
- -0.3983583824510044 -0.9172298507631658 \\
- -0.39191381581820517 -0.9200019353081894 \\
- -0.38544996040553414 -0.9227287402174986 \\
- -0.37896713434386475 -0.925410131286231 \\
- -0.3724656566977443 -0.9280459765446527 \\
- -0.3659458474496954 -0.9306361462646529 \\
- -0.3594080274844645 -0.9331805129661284 \\
- -0.35285251857322947 -0.9356789514232586 \\
- -0.3462796433577632 -0.9381313386706684 \\
- -0.339689725334554 -0.9405375540094799 \\
- }
- ;
- \addlegendentry {transformation.jl line 89}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={7935cd50-9648-4026-9326-803bdeb493a2}, area legend, fill={rgb,1:red,0.9308;green,0.3675;blue,0.5758}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.339689725334554 -0.9405375540094799 \\
- -0.3334458550750532 -0.9427692515845363 \\
- -0.3271873244050821 -0.9449594989991071 \\
- -0.320914408489642 -0.9471081999559201 \\
- -0.314627383126198 -0.9492152599843519 \\
- -0.30832652473256006 -0.9512805864445789 \\
- -0.30201211033472336 -0.9533040885316536 \\
- -0.2956844175546949 -0.9552856772794937 \\
- -0.2893437245982815 -0.9572252655647958 \\
- -0.28299031024286114 -0.9591227681108656 \\
- -0.27662445382512807 -0.9609781014913658 \\
- -0.27024643522880587 -0.9627911841339859 \\
- -0.26385653487234845 -0.9645619363240274 \\
- -0.25745503369660455 -0.9662902802079095 \\
- -0.25104221315247244 -0.9679761397965906 \\
- -0.2446183551885195 -0.969619440968911 \\
- -0.23818374223858868 -0.9712201114748508 \\
- -0.23173865720938344 -0.9727780809387061 \\
- -0.2252833834680233 -0.9742932808621845 \\
- -0.21881820482959205 -0.975765644627415 \\
- -0.2123434055446527 -0.9771951074998785 \\
- -0.20585927028675674 -0.9785816066312528 \\
- -0.1993660841399221 -0.9799250810621767 \\
- -0.1928641325861017 -0.9812254717249296 \\
- -0.1863537014926342 -0.9824827214460283 \\
- -0.1798350770996697 -0.983696774948742 \\
- -0.1733085460075915 -0.9848675788555203 \\
- -0.1667743951644084 -0.9859950816903428 \\
- -0.16023291185314573 -0.9870792338809798 \\
- -0.15368438367920825 -0.9881199877611736 \\
- -0.14712909855773798 -0.9891172975727335 \\
- -0.14056734470095814 -0.9900711194675471 \\
- -0.13399941060549533 -0.9909814115095096 \\
- -0.1274255850397025 -0.9918481336763656 \\
- -0.12084615703095572 -0.9926712478614708 \\
- -0.11426141585295382 -0.9934507178754658 \\
- -0.10767165101299384 -0.9941865094478681 \\
- -0.10107715223924509 -0.9948785902285788 \\
- -0.0944782094680135 -0.9955269297893041 \\
- -0.087875112830988 -0.9961314996248944 \\
- -0.08126815264249158 -0.9966922731545964 \\
- -0.07465761938671003 -0.9972092257232226 \\
- -0.06804380370492762 -0.9976823346022347 \\
- -0.0614269963827423 -0.9981115789907432 \\
- -0.054807488337283744 -0.9984969400164221 \\
- -0.04818557060442527 -0.9988384007363383 \\
- -0.04156153432598193 -0.9991359461376966 \\
- -0.03493567073691713 -0.9993895631384999 \\
- -0.02830827115253096 -0.9995992405881243 \\
- -0.021679626955659243 -0.9997649692678092 \\
- }
- ;
- \addlegendentry {transformation.jl line 79}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={a93286c3-d079-4e60-aef3-dc478ee87a84}, area legend, fill={rgb,1:red,0.777;green,0.5097;blue,0.1464}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- -0.021679626955659243 -0.9997649692678092 \\
- -0.015268036198562589 -0.9998834367418231 \\
- -0.008855817581180477 -0.9999607864786343 \\
- -0.002443234790169972 -0.9999970152974258 \\
- 0.003969448472838792 -0.999992121708377 \\
- 0.01038196850208135 -0.9999461059127246 \\
- 0.016794061598506712 -0.9998589698027545 \\
- 0.023205464080620446 -0.9997307169617242 \\
- 0.029615912295327042 -0.9995613526637149 \\
- 0.036025142628775535 -0.9993508838734153 \\
- 0.042432891517194676 -0.9990993192458345 \\
- 0.04883889545773484 -0.9988066691259467 \\
- 0.05524289101930311 -0.9984729455482654 \\
- 0.061644614853395285 -0.9980981622363486 \\
- 0.06804380370492902 -0.9976823346022345 \\
- 0.07444019442306418 -0.9972254797458078 \\
- 0.0808335239720279 -0.996727616454096 \\
- 0.08722352944193026 -0.9961887652004979 \\
- 0.09360994805957508 -0.9956089481439405 \\
- 0.0999925171992692 -0.9949881891279684 \\
- 0.10637097439361715 -0.9943265136797632 \\
- 0.11274505734431788 -0.9936239490090939 \\
- 0.11911450393295035 -0.9928805240071975 \\
- 0.12547905223175157 -0.9920962692455916 \\
- 0.13183844051439128 -0.9912712169748162 \\
- 0.13819240726672943 -0.9904054011231089 \\
- 0.144540691197574 -0.9894988572950085 \\
- 0.15088303124942404 -0.9885516227698913 \\
- 0.15721916660920857 -0.9875637365004377 \\
- 0.1635488367190066 -0.9865352391110314 \\
- 0.16987178128676553 -0.9854661728960874 \\
- 0.176187740297004 -0.9843565818183142 \\
- 0.1824964540215036 -0.9832065115069047 \\
- 0.18879766302999304 -0.9820160092556603 \\
- 0.19509110820081133 -0.9807851240210463 \\
- 0.20137653073156694 -0.9795139064201785 \\
- 0.20765367214977967 -0.9782024087287415 \\
- 0.21392227432350874 -0.9768506848788393 \\
- 0.2201820794719713 -0.9754587904567771 \\
- 0.22643283017613786 -0.9740267827007758 \\
- 0.23267426938932143 -0.9725547204986182 \\
- 0.23890614044774713 -0.9710426643852273 \\
- 0.24512818708110592 -0.9694906765401772 \\
- 0.25134015342309657 -0.9678988207851347 \\
- 0.2575417840219424 -0.9662671625812372 \\
- 0.2637328238508994 -0.9645957690263992 \\
- 0.269913018318743 -0.9628847088525531 \\
- 0.27608211328023624 -0.9611340524228235 \\
- 0.2822398550465847 -0.9593438717286324 \\
- 0.28838599039586343 -0.9575142403867406 \\
- }
- ;
- \addlegendentry {aggregation.jl line 11}
- \addplot[color={rgb,1:red,0.0;green,0.0;blue,0.0}, name path={8053102b-a774-4346-931a-7aa2a1ef44b7}, area legend, fill={rgb,1:red,0.0;green,0.6643;blue,0.553}, fill opacity={1.0}, draw opacity={0.5}, line width={1}, solid]
- table[row sep={\\}]
- {
- \\
- 0.0 0.0 \\
- 0.28838599039586343 -0.9575142403867406 \\
- 0.31326356449974546 -0.9496662251322376 \\
- 0.3379279674354339 -0.9411719762216448 \\
- 0.36236241544578934 -0.9320372738642447 \\
- 0.3865502812545618 -0.922268334088306 \\
- 0.4104751053809963 -0.9118718045111714 \\
- 0.43412060734026997 -0.9008547598156514 \\
- 0.4574706967221121 -0.8892246969358112 \\
- 0.4805094841400928 -0.8769895299554162 \\
- 0.5032212920441106 -0.864157584722518 \\
- 0.5255906653887281 -0.8507375931838407 \\
- 0.5476023821501048 -0.8367386874428184 \\
- 0.5692414636843505 -0.8221703935453394 \\
- 0.5904931849202739 -0.8070426249974106 \\
- 0.6113430843795679 -0.7913656760191691 \\
- 0.6317769740176338 -0.7751502145398156 \\
- 0.6517809488783314 -0.7584072749382498 \\
- 0.6713413965560915 -0.7411482505343426 \\
- 0.6904450064589591 -0.7233848858359483 \\
- 0.7090787788662464 -0.7051292685469472 \\
- 0.7272300337746537 -0.6863938213417397 \\
- 0.7448864195268168 -0.6671912934118064 \\
- 0.7620359212164292 -0.6475347517900705 \\
- 0.7786668688642042 -0.6274375724589787 \\
- 0.7947679453591201 -0.6069134312483476 \\
- 0.8103281941595476 -0.5859762945291614 \\
- 0.8253370267490093 -0.5646404097096709 \\
- 0.8397842298415105 -0.5429202955402397 \\
- 0.8536599723315228 -0.5208307322335575 \\
- 0.8669548119839091 -0.49838675140692174 \\
- 0.8796597018592205 -0.4756036258534488 \\
- 0.8917659964700027 -0.45249685914916926 \\
- 0.9032654576639236 -0.42908217510307106 \\
- 0.9141502602297097 -0.4053755070572888 \\
- 0.9244129972220878 -0.3813929870446968 \\
- 0.9340466850020981 -0.35715093481130833 \\
- 0.943044767989358 -0.33266584671092697 \\
- 0.9514011231230358 -0.30795438447962714 \\
- 0.959110064028501 -0.2830333638976947 \\
- 0.9661663448868186 -0.25791974334673384 \\
- 0.9725651640044494 -0.23263061226974946 \\
- 0.9783021670807314 -0.2071831795420295 \\
- 0.983373450170915 -0.18159476176077013 \\
- 0.9877755623427408 -0.15588277146138416 \\
- 0.9915055080247459 -0.13006470526853398 \\
- 0.9945607490447055 -0.10415813198994286 \\
- 0.9969392063568222 -0.07818068066107806 \\
- 0.9986392614564845 -0.052150028548862984 \\
- 0.9996597574816355 -0.026083889122554525 \\
- 1.0 6.432490598706546e-16 \\
- }
- ;
- \addlegendentry {others .< 5.0}
-\end{axis}
-\end{tikzpicture}
diff --git a/perf/mallocs/mallocs-evolutions.pdf b/perf/mallocs/mallocs-evolutions.pdf
deleted file mode 100644
index 5a489a5..0000000
Binary files a/perf/mallocs/mallocs-evolutions.pdf and /dev/null differ
diff --git a/perf/mallocs/mallocs-evolutions.png b/perf/mallocs/mallocs-evolutions.png
deleted file mode 100644
index c44fa92..0000000
Binary files a/perf/mallocs/mallocs-evolutions.png and /dev/null differ
diff --git a/perf/mallocs/mallocs-evolutions.svg b/perf/mallocs/mallocs-evolutions.svg
deleted file mode 100644
index 7303a2f..0000000
--- a/perf/mallocs/mallocs-evolutions.svg
+++ /dev/null
@@ -1,687 +0,0 @@
-
-
-
diff --git a/perf/mallocs/mallocs-evolutions.tikz b/perf/mallocs/mallocs-evolutions.tikz
deleted file mode 100644
index d8591fe..0000000
--- a/perf/mallocs/mallocs-evolutions.tikz
+++ /dev/null
@@ -1,135 +0,0 @@
-\begin{tikzpicture}[/tikz/background rectangle/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, draw opacity={1.0}}, show background rectangle]
-\begin{axis}[point meta max={nan}, point meta min={nan}, legend cell align={left}, legend columns={1}, title={Mallocs evolution in
-CompositionalNetworks.jl}, title style={at={{(0.5,1)}}, anchor={south}, font={{\fontsize{14 pt}{18.2 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, legend style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid, fill={rgb,1:red,1.0;green,1.0;blue,1.0}, fill opacity={1.0}, text opacity={1.0}, font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, text={rgb,1:red,0.0;green,0.0;blue,0.0}, cells={anchor={center}}, at={(1.02, 1)}, anchor={north west}}, axis background/.style={fill={rgb,1:red,1.0;green,1.0;blue,1.0}, opacity={1.0}}, anchor={north west}, xshift={1.0mm}, yshift={-1.0mm}, width={145.4mm}, height={99.6mm}, scaled x ticks={false}, xlabel={version}, x tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, x tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, xlabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, xmajorgrids={true}, xmin={0.44}, xmax={2.56}, xtick={{0.5,1.5,2.5}}, xticklabels={{$0.2.7$,$0.3.0$,$0.3.1$}}, xtick align={inside}, xticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, x grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis x line*={left}, x axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, scaled y ticks={false}, ylabel={bytes}, y tick style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}}, y tick label style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, opacity={1.0}, rotate={0}}, ylabel style={at={(ticklabel cs:0.5)}, anchor=near ticklabel, at={{(ticklabel cs:0.5)}}, anchor={near ticklabel}, font={{\fontsize{11 pt}{14.3 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, ymode={log}, log basis y={10}, ymajorgrids={true}, ymin={379.13287093338107}, ymax={2.3007789272602423e11}, ytick={{100000.0,1.0e10}}, yticklabels={{$10^{5}$,$10^{10}$}}, ytick align={inside}, yticklabel style={font={{\fontsize{8 pt}{10.4 pt}\selectfont}}, color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, rotate={0.0}}, y grid style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={0.1}, line width={0.5}, solid}, axis y line*={left}, y axis line style={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, line width={1}, solid}, colorbar={false}]
- \addplot[color={rgb,1:red,0.0;green,0.6056;blue,0.9787}, name path={d3ec9e6b-7dfe-437f-ab71-eb7d21913812}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6056;blue,0.9787}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 5.61261656e8 \\
- 1.5 1.76234561e8 \\
- 2.5 1.50185042e8 \\
- }
- ;
- \addlegendentry {utils.jl}
- \addplot[color={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, name path={c1791d01-fb81-4d0f-ac34-39679245f201}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.8889;green,0.4356;blue,0.2781}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1.256140101e9 \\
- 1.5 6.8545665e7 \\
- 2.5 5.6318572e7 \\
- }
- ;
- \addlegendentry {comparison.jl}
- \addplot[color={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, name path={a066b385-9dff-4749-99ac-c1251d966ef2}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.2422;green,0.6433;blue,0.3044}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1.29806684535e11 \\
- 1.5 7.621848028e9 \\
- 2.5 6.821476039e9 \\
- }
- ;
- \addlegendentry {Total}
- \addplot[color={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, name path={ecff463a-6b95-42ae-b614-fedd4c162a1a}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.7644;green,0.4441;blue,0.8243}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 6.7470139726e10 \\
- 1.5 3.184361818e9 \\
- 2.5 2.810617326e9 \\
- }
- ;
- \addlegendentry {transformation.jl}
- \addplot[color={rgb,1:red,0.6755;green,0.5557;blue,0.0942}, name path={9c0c20d9-e7d4-4d20-bb08-6333c8e50124}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.6755;green,0.5557;blue,0.0942}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 4.6217645119e10 \\
- 1.5 1.867283593e9 \\
- 2.5 1.696810825e9 \\
- }
- ;
- \addlegendentry {icn.jl}
- \addplot[color={rgb,1:red,0.0;green,0.6658;blue,0.681}, name path={db276158-2105-4849-8402-f5f60eb5a45b}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6658;blue,0.681}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1.39844557e8 \\
- 1.5 1.1973424e7 \\
- 2.5 1.132448e7 \\
- }
- ;
- \addlegendentry {composition.jl}
- \addplot[color={rgb,1:red,0.9308;green,0.3675;blue,0.5758}, name path={f7b1586c-24db-40ec-a46d-f7a9d13b5021}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.9308;green,0.3675;blue,0.5758}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 4.936748118e9 \\
- 1.5 1.29866302e8 \\
- 2.5 1.14259822e8 \\
- }
- ;
- \addlegendentry {genetic.jl}
- \addplot[color={rgb,1:red,0.777;green,0.5097;blue,0.1464}, name path={0b4be79a-4c4e-4d5e-b948-3b77fc35cdbe}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.777;green,0.5097;blue,0.1464}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 2.8423405e7 \\
- 1.5 1.704019332e9 \\
- 2.5 1.547005022e9 \\
- }
- ;
- \addlegendentry {metrics.jl}
- \addplot[color={rgb,1:red,0.0;green,0.6643;blue,0.553}, name path={1cfc740e-562f-4571-9d91-89c114212604}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6643;blue,0.553}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1.67434327e8 \\
- 1.5 3.1137883e7 \\
- 2.5 2.7844983e7 \\
- }
- ;
- \addlegendentry {layer.jl}
- \addplot[color={rgb,1:red,0.5585;green,0.5935;blue,0.1175}, name path={06e511c8-c5a8-4ab4-9ded-4687c3fe376b}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.5585;green,0.5935;blue,0.1175}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 121328.0 \\
- 1.5 3824.0 \\
- 2.5 3792.0 \\
- }
- ;
- \addlegendentry {explore.jl}
- \addplot[color={rgb,1:red,0.0;green,0.6609;blue,0.7982}, name path={55d9c554-cee4-48a6-9ce9-93c112c11ed7}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.0;green,0.6609;blue,0.7982}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1.923375587e9 \\
- 1.5 6.7025062e7 \\
- 2.5 5.8852815e7 \\
- }
- ;
- \addlegendentry {arithmetic.jl}
- \addplot[color={rgb,1:red,0.6097;green,0.4992;blue,0.9118}, name path={c0f65066-9804-41a7-b8d8-c4cb63c902f1}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.6097;green,0.4992;blue,0.9118}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 1008.0 \\
- 1.5 1008.0 \\
- 2.5 672.0 \\
- }
- ;
- \addlegendentry {learn.jl}
- \addplot[color={rgb,1:red,0.38;green,0.5511;blue,0.9665}, name path={6f618e09-797a-4078-8724-9ade81e5088f}, draw opacity={0.5}, line width={2}, solid, mark={*}, mark size={3.0 pt}, mark repeat={1}, mark options={color={rgb,1:red,0.0;green,0.0;blue,0.0}, draw opacity={1.0}, fill={rgb,1:red,0.38;green,0.5511;blue,0.9665}, fill opacity={1.0}, line width={0.75}, rotate={0}, solid}]
- table[row sep={\\}]
- {
- \\
- 0.5 7.105549603e9 \\
- 1.5 3.81395556e8 \\
- 2.5 3.48252688e8 \\
- }
- ;
- \addlegendentry {aggregation.jl}
-\end{axis}
-\end{tikzpicture}
diff --git a/src/CompositionalNetworks.jl b/src/CompositionalNetworks.jl
index 2bc3939..42b8fe9 100644
--- a/src/CompositionalNetworks.jl
+++ b/src/CompositionalNetworks.jl
@@ -1,16 +1,15 @@
module CompositionalNetworks
-# Usings
-using ConstraintCommons
-using ConstraintDomains
-using Dictionaries
+# imports
+import ConstraintCommons: incsert!
+import ConstraintDomains: explore
+import Dictionaries: Dictionary, set!
import Distances
-using JuliaFormatter
-using OrderedCollections
-using Random
-using TestItems
-using ThreadSafeDicts
-using Unrolled
+import JuliaFormatter: SciMLStyle, format_text
+import OrderedCollections: LittleDict
+import Random: bitrand
+import TestItems: @testitem
+import Unrolled: @unroll
export Composition
export ICN
diff --git a/src/composition.jl b/src/composition.jl
index 2a27ef2..6e200d1 100644
--- a/src/composition.jl
+++ b/src/composition.jl
@@ -91,7 +91,7 @@ function generate(c::Composition, name, ::Val{:Julia})
return $ag(@view X[:, 1]) |> (y -> $co(y; dom_size, nvars=length(x), params...))
end
"""
- return documentation * format_text(output, BlueStyle(); pipe_to_function_call = false)
+ return documentation * format_text(output, SciMLStyle(); pipe_to_function_call = false)
end
"""
diff --git a/src/icn.jl b/src/icn.jl
index a0047eb..2c21632 100644
--- a/src/icn.jl
+++ b/src/icn.jl
@@ -133,6 +133,7 @@ function _compose(icn::ICN)
if exclu(layer)
f_id = as_int(@view weights(icn)[_start:_end])
+ # @warn "debug" f_id _end _start weights(icn) (exclu(layer) ? "nbits_exclu(layer)" : "length(layer)") (@view weights(icn)[_start:_end])
s = symbol(layer, f_id + 1)
push!(funcs, [functions(layer)[s]])
push!(symbols, [s])
diff --git a/src/layer.jl b/src/layer.jl
index 53646f0..18be36f 100644
--- a/src/layer.jl
+++ b/src/layer.jl
@@ -30,7 +30,12 @@ exclu(layer) = layer.exclusive
symbol(layer, i)
Return the i-th symbols of the operations in a given layer.
"""
-symbol(layer, i) = collect(keys(functions(layer)))[i]
+symbol(layer, i) = begin
+ if i > length(layer)
+ @info layer i functions(layer)
+ end
+ collect(keys(functions(layer)))[i]
+end
"""
nbits_exclu(layer)
diff --git a/src/learn.jl b/src/learn.jl
index 6a71559..a2410f7 100644
--- a/src/learn.jl
+++ b/src/learn.jl
@@ -1,6 +1,6 @@
abstract type AbstractOptimizer end
-function optimize!(args...)
+function optimize!(args...; kwargs...)
return nothing
end
diff --git a/src/metrics.jl b/src/metrics.jl
index 992b323..542c6e8 100644
--- a/src/metrics.jl
+++ b/src/metrics.jl
@@ -7,7 +7,7 @@ hamming(x, X) = mapreduce(y -> Distances.hamming(x, y), min, X)
"""
minkowski(x, X, p)
"""
-minkowski(x, X, p) = mapreduce(Distances.minkowski(x, y, p), min, X)
+minkowski(x, X, p) = mapreduce(y -> Distances.minkowski(x, y, p), min, X)
"""
manhattan(x, X)
diff --git a/test/ExplicitImports.jl b/test/ExplicitImports.jl
new file mode 100644
index 0000000..e9058ce
--- /dev/null
+++ b/test/ExplicitImports.jl
@@ -0,0 +1,3 @@
+@testset "Look for Explicit Imports" begin
+ @test check_no_implicit_imports(CompositionalNetworks) === nothing
+end
diff --git a/test/JET.jl b/test/JET.jl
new file mode 100644
index 0000000..41736d6
--- /dev/null
+++ b/test/JET.jl
@@ -0,0 +1,3 @@
+@testset "Code linting (JET.jl)" begin
+ JET.test_package(CompositionalNetworks; target_defined_modules = true)
+end
diff --git a/test/runtests.jl b/test/runtests.jl
index 8c2c27c..c3ed1ee 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -1,9 +1,16 @@
+using CompositionalNetworks
+
+using Aqua
+using ExplicitImports
+using JET
using Test
using TestItemRunner
-using TestItems
-@testset "Package tests: CompositionalNetworks" begin
+@testset "Package tests: ConstraintCommons" begin
include("Aqua.jl")
+ include("ExplicitImports.jl")
+ include("JET.jl")
include("TestItemRunner.jl")
+
include("icn.jl")
end