From 8082b936f483ddc38e696dfba14b675614d84798 Mon Sep 17 00:00:00 2001 From: Neven Sajko Date: Tue, 7 Oct 2025 18:25:12 +0200 Subject: [PATCH] simplify `PropertyComparison` --- src/GraphProperties.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GraphProperties.jl b/src/GraphProperties.jl index 1bf12a2..b26ebb0 100644 --- a/src/GraphProperties.jl +++ b/src/GraphProperties.jl @@ -7,7 +7,7 @@ export abstract type GraphProperty{T} end struct PropertyComparison{ - Comparison <: Union{typeof(==), typeof(≤), typeof(≥)}, + Comparison <: Union{typeof(==), typeof(≤)}, Property <: GraphProperty{<:Real}, Value, } <: GraphProperty{Bool}