From 81af0f7474ab70381e12df45205daae6e4e2df42 Mon Sep 17 00:00:00 2001 From: Alonso Martinez Cisneros Date: Tue, 25 Jun 2024 23:18:53 +0200 Subject: [PATCH] Fixing doc build https://github.com/JuliaDocs/Documenter.jl/issues/2538 --- src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.jl b/src/utils.jl index 1530e29..0531664 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -35,7 +35,7 @@ Classifies the `n` agents in X into the 2^`N` orthants (or quadrants) by returning an adjacency matrix of size n × 2^`N` where the i-th row has a single true entry representing which orthant the i-th agent is in. -FIXME: Might be overcomplicated. Perhaps achieved with A .> [0, 0] (simplified idea) +FIXME: Might be overcomplicated. Perhaps achieved with A .> [0, 0], (simplified idea) """ function _orthantize(X) N = size(X, 2) # Dimensions of the problem (i.e N if R^N is the problem space)