Skip to content

Commit

Permalink
ToricVarieties: Fix test that got confused and selected the wrong var…
Browse files Browse the repository at this point in the history
…iables (#4356)

(cherry picked from commit 5d4b919)
  • Loading branch information
lkastner authored and benlorenz committed Dec 12, 2024
1 parent 09cf374 commit 8274820
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/AlgebraicGeometry/ToricVarieties/toric_blowups.jl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
@test !issubset(pbJ_str, ideal_sheaf(E))
end

I = ideal(S, [S[1], S[2]])
# Select variables corresponding to rays [1,0] and [0,1]
I = ideal(S, gens(S)[findall(v->v[1]>=0&&v[2]>=0, rays(P2))])
bl2 = blow_up(P2, I)
II = IdealSheaf(P2, I)

Expand Down

0 comments on commit 8274820

Please sign in to comment.