J = np.array(sys.symbolic_jacobian())
pi_coeffs = bertini.random_matrix(real=True,rows=3,cols=1)
pi_as_func = ([vg] @ pi_coeffs)[0,0]
pi_as_func
J_pi = bertini.jacobian(functions=pi_as_func, variables=vg)
J_with_pi = np.vstack([J, J_pi])
J_with_pi
sympy.det(J_with_pi)
SympifyError: "cannot sympify object of type <class 'bertini._pybertini.function_tree.operator.Sum'>"
bertini.sympy_bridge.to_sympy()
module 'bertini' has no attribute 'sympy_bridge'
gives
gives