Skip to content

Is there a way to output the start_system used in the calculation #556

Answered by saschatimme
jasonrong001 asked this question in Q&A
Discussion options

You must be logged in to vote

There are multiple options here:

  1. You can use the total_degree https://www.juliahomotopycontinuation.org/HomotopyContinuation.jl/stable/start_systems/#HomotopyContinuation.total_degree function to get a tracker and an iterator of the start solutions:
 f = [(x - 10)^2]
tracker, starts = total_degree(System(f))
res = track.(tracker, starts)
  1. Additionally you can set the compile option in solve to :none, i.e.
solve(f; compile=:none)

This reduces the amount of code generation which is most likely the reason that your are running out of memory

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@jasonrong001
Comment options

@PBrdng
Comment options

Answer selected by jasonrong001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants