Annotation of OpenXM_contrib/PHC/Ada/Continuation/generic_inline_homotopy.ads, Revision 1.1
1.1 ! maekawa 1: with Standard_Complex_Numbers; use Standard_Complex_Numbers;
! 2: with Standard_Complex_Vectors; use Standard_Complex_Vectors;
! 3: with Standard_Complex_Matrices; use Standard_Complex_Matrices;
! 4:
! 5: generic
! 6:
! 7: with procedure Homotopy_Constants ( a : in Complex_Number; k : in positive );
! 8: with function Eval_Homotopy ( x : Vector; t : Complex_Number ) return Vector;
! 9: with function Diff_Homotopy ( x : Vector; t : Complex_Number ) return Matrix;
! 10: with function Diff_Homotopy ( x : Vector; t : Complex_Number ) return Vector;
! 11:
! 12: package Generic_Inline_Homotopy is
! 13:
! 14: -- DESCRIPTION :
! 15: -- Generic implementation of artificial-parameter homotopy.
! 16:
! 17: procedure Init ( a : in Complex_Number; k : in positive );
! 18:
! 19: function Eval ( x : Vector; t : Complex_Number ) return Vector;
! 20: function Diff ( x : Vector; t : Complex_Number ) return Matrix;
! 21: function Diff ( x : Vector; t : Complex_Number ) return Vector;
! 22:
! 23: end Generic_Inline_Homotopy;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>