From a16e4cf1c4d5ed69f27c45988975985a6b9f0a46 Mon Sep 17 00:00:00 2001 From: Chris Scott Date: Thu, 27 Jun 2024 09:45:30 +1200 Subject: [PATCH] remove commented docs --- src/docs.jl | 36 ++++-------------------------------- 1 file changed, 4 insertions(+), 32 deletions(-) diff --git a/src/docs.jl b/src/docs.jl index 10dcfad..edd680c 100644 --- a/src/docs.jl +++ b/src/docs.jl @@ -2,8 +2,10 @@ @doc """ $(TYPEDEF) -DA object representing a single polynomial. The default constructor (with no -arguments) creates an empty DA object representing the constant zero function. +DA object representing a single polynomial. + +The default constructor (with no arguments) creates an empty DA object +representing the constant zero function. """ DA @@ -18,33 +20,3 @@ Create a DA object with the constant part equal to `c`. Create a DA object as `c` times the independent variable number `i`. """ DA(i::Integer, c::Number) - -#@doc """ -# init(ord::Integer, nvar::Integer) -# -#Initialize the DACE control arrays and set the maximum order and the maximum -#number of variables. -# -#Note: must be called before any other DA routine can be used! -#""" init(ord::Integer, nvar::Integer) -# -#@doc """ -# getMaxOrder() -# -#Return the maximum order currently set for the computation, or zero if -#undefined. -#""" getMaxOrder() -# -#@doc """ -# getMaxVariables() -# -#Return the maximum number of variables set for the computations, or zero if -#undefined. -#""" getMaxVariables() -# -#@doc """ -# getMaxMonomials() -# -#Return the maximum number of monomials available with the order and number of -#variables specified, or zero if undefined. -#""" getMaxMonomials()