00001 /* 00002 * lib/numerics/rootsolve/rootsolve.cc 00003 * 00004 * Root solver base class. 00005 * 00006 * Copyright (c) 2004 by Wolfgang Wieser ] wwieser (a) gmx <*> de [ 00007 * 00008 * This file may be distributed and/or modified under the terms of the 00009 * GNU General Public License version 2 as published by the Free Software 00010 * Foundation. (See COPYING.GPL for details.) 00011 * 00012 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00013 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00014 * 00015 */ 00016 00017 #include "rootsolve.h" 00018 00019 00020 namespace NUM 00021 { 00022 00023 int PolyRootSolver::solve(int /*order*/,const dbl */*c*/,dbl */*r*/) 00024 { 00025 CritAssert(0); // must be overridden 00026 return(-1); 00027 } 00028 00029 } // end of namespace NUM