From 1ef6f3ad573e7dac2aa58850b8fbe33c6b8689c7 Mon Sep 17 00:00:00 2001 From: Erik Paemurru Date: Fri, 13 Dec 2024 17:30:35 +0100 Subject: [PATCH] Blowup along a ray does not change orbifoldness --- experimental/Schemes/src/ToricBlowups/types.jl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/experimental/Schemes/src/ToricBlowups/types.jl b/experimental/Schemes/src/ToricBlowups/types.jl index 0c814165e57..56d183acea1 100644 --- a/experimental/Schemes/src/ToricBlowups/types.jl +++ b/experimental/Schemes/src/ToricBlowups/types.jl @@ -73,6 +73,9 @@ if has_attribute(v, :has_torusfactor) set_attribute!(bl, :has_torusfactor, has_torusfactor(v)) end + if has_attribute(v, :is_orbifold) + set_attribute!(bl, :is_orbifold, is_orbifold(v)) + end return bl end @@ -92,6 +95,9 @@ if has_attribute(v, :has_torusfactor) set_attribute!(bl, :has_torusfactor, has_torusfactor(v)) end + if has_attribute(v, :is_orbifold) + set_attribute!(bl, :is_orbifold, is_orbifold(v)) + end return bl end end