[BACK]Return to multprec_residual_evaluations.ads CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / PHC / Ada / Continuation

File: [local] / OpenXM_contrib / PHC / Ada / Continuation / multprec_residual_evaluations.ads (download)

Revision 1.1.1.1 (vendor branch), Sun Oct 29 17:45:22 2000 UTC (23 years, 6 months ago) by maekawa
Branch: PHC, MAIN
CVS Tags: v2, maekawa-ipv6, RELEASE_1_2_3, RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2, RELEASE_1_2_1, HEAD
Changes since 1.1: +0 -0 lines

Import the second public release of PHCpack.

OKed by Jan Verschelde.

with text_io;                            use text_io;
with Multprec_Floating_Numbers;          use Multprec_Floating_Numbers;
with Multprec_Complex_Vectors;           use Multprec_Complex_Vectors;
with Multprec_Complex_Poly_SysFun;       use Multprec_Complex_Poly_SysFun;
with Multprec_Complex_Solutions;         use Multprec_Complex_Solutions;

package Multprec_Residual_Evaluations is

-- DESCRIPTION :
--   This package provides routines to evaluate solutions of polynomial
--   systems using multi-precision arithmetic.

  function Residual ( p_eval : Eval_Poly_Sys; zero : Vector )
                    return Floating_Number;

  -- DESCRIPTION :
  --   Returns maximal component in absolute value of the evaluation
  --   of the zero in the system.

  procedure Residual ( file : in file_type;
                       p_eval : in Eval_Poly_Sys; sol : in Solution );

  -- DESCRIPTION :
  --   Writes the residual of the solution on the file.

  procedure Residuals ( file : in file_type;
                        p_eval : in Eval_Poly_Sys; sols : in Solution_List );

  -- DESCRIPTION :
  --   Writes the residuals of the solutions on the file.

end Multprec_Residual_Evaluations;