• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements.  See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License.  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 package org.apache.commons.math.ode.jacobians;
19 
20 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
21 
22 
23 /** This interface represents {@link FirstOrderDifferentialEquations
24  * first order differential equations} with parameters.
25  *
26  * @see FirstOrderIntegratorWithJacobians
27  *
28  * @version $Revision: 1037341 $ $Date: 2010-11-20 22:58:35 +0100 (sam. 20 nov. 2010) $
29  * @since 2.1
30  * @deprecated as of 2.2 the complete package is deprecated, it will be replaced
31  * in 3.0 by a completely rewritten implementation
32  */
33 @Deprecated
34 public interface ParameterizedODE extends FirstOrderDifferentialEquations {
35 
36     /** Get the number of parameters.
37      * @return number of parameters
38      */
getParametersDimension()39     int getParametersDimension();
40 
41     /** Set a parameter.
42      * @param i index of the parameters (must be between 0
43      * and {@link #getParametersDimension() getParametersDimension() - 1})
44      * @param value value for the parameter
45      */
setParameter(int i, double value)46     void setParameter(int i, double value);
47 
48 }
49