Skip to content

Commit

Permalink
replaced println by print
Browse files Browse the repository at this point in the history
  • Loading branch information
wdecker committed Dec 1, 2021
1 parent 612e15a commit 3da9619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions experimental/PlaneCurve/ParaPlaneCurves.jl
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ julia> I = ideal(R, V);
julia> RNC = ProjCurve(I)
Projective curve defined by the ideal(v*x - w^2, v*y - w*x, w*y - x^2, v*z - w*y, w*z - x*y, x*z - y^2)
julia> rat_normal_curve_anticanonical_map(RNC)
3-element Vector{MPolyElem_dec{fmpq, fmpq_mpoly}}:
x
Expand Down Expand Up @@ -287,7 +286,6 @@ julia> I = ideal(R, V);
julia> RNC = ProjCurve(I)
Projective curve defined by the ideal(v*x - w^2, v*y - w*x, w*y - x^2, v*z - w*y, w*z - x*y, x*z - y^2)
julia> rat_normal_curve_It_Proj_Even(RNC)
Projective plane curve defined by -y(1)*y(3) + y(2)^2
```
Expand Down
4 changes: 2 additions & 2 deletions experimental/PlaneCurve/ProjCurve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ mutable struct ProjCurve <: ProjectiveCurve

function Base.show(io::IO, C::ProjCurve)
if !get(io, :compact, false)
println(io, "Projective curve defined by the ", C.I)
print(io, "Projective curve defined by the ", C.I)
else
println(io, C.I)
print(io, C.I)
end
end
end
Expand Down

0 comments on commit 3da9619

Please sign in to comment.