Move random cut routine into engine

This commit is contained in:
Aaron Fenyes 2024-02-10 17:39:26 -05:00
parent 6f18d4efcc
commit 1f173708eb
2 changed files with 18 additions and 21 deletions

View file

@ -1,7 +1,8 @@
module Numerical
using LinearAlgebra
using AbstractAlgebra
using HomotopyContinuation: Variable, Expression, System
using HomotopyContinuation
using ..Algebraic
# --- polynomial conversion ---
@ -10,7 +11,7 @@ using ..Algebraic
# https://github.com/JuliaHomotopyContinuation/HomotopyContinuation.jl/issues/520#issuecomment-1317681521
function Base.convert(::Type{Expression}, f::MPolyRingElem)
variables = Variable.(symbols(parent(f)))
f_data = zip(coefficients(f), exponent_vectors(f))
f_data = zip(AbstractAlgebra.coefficients(f), exponent_vectors(f))
sum(cf * prod(variables .^ exp_vec) for (cf, exp_vec) in f_data)
end
@ -22,4 +23,18 @@ function System(I::Generic.Ideal)
System(eqns, variables = variables)
end
# --- sampling ---
function real_samples(F::AbstractSystem, dim)
# choose a random real hyperplane of codimension `dim` by intersecting
# hyperplanes whose normal vectors are uniformly distributed over the unit
# sphere
# [to do] guard against the unlikely event that one of the normals is zero
normals = transpose(hcat(
(normalize(randn(nvariables(F))) for _ in 1:dim)...
))
cut = LinearSubspace(normals, fill(0., dim))
filter(isreal, results(witness_set(F, cut)))
end
end