|
ConstrainedOptPack: C++ Tools for Constrained (and Unconstrained) Optimization
Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Moocho: Multi-functional Object-Oriented arCHitecture for Optimization 00005 // Copyright (2003) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // Redistribution and use in source and binary forms, with or without 00011 // modification, are permitted provided that the following conditions are 00012 // met: 00013 // 00014 // 1. Redistributions of source code must retain the above copyright 00015 // notice, this list of conditions and the following disclaimer. 00016 // 00017 // 2. Redistributions in binary form must reproduce the above copyright 00018 // notice, this list of conditions and the following disclaimer in the 00019 // documentation and/or other materials provided with the distribution. 00020 // 00021 // 3. Neither the name of the Corporation nor the names of the 00022 // contributors may be used to endorse or promote products derived from 00023 // this software without specific prior written permission. 00024 // 00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00036 // 00037 // Questions? Contact Roscoe A. Bartlett (rabartl@sandia.gov) 00038 // 00039 // *********************************************************************** 00040 // @HEADER 00041 00042 #include <limits> 00043 00044 #include "ConstrainedOptPack_vector_change_stats.hpp" 00045 #include "DenseLinAlgPack_DVectorClass.hpp" 00046 #include "DenseLinAlgPack_AssertOp.hpp" 00047 #include "Teuchos_ScalarTraits.hpp" 00048 00049 void ConstrainedOptPack::vector_change_stats( 00050 const DVectorSlice& x, const DVectorSlice& d 00051 , value_type* max_term, size_type* max_k 00052 , value_type* min_term, size_type* min_k 00053 , value_type* av_term ) 00054 { 00055 typedef Teuchos::ScalarTraits<value_type> ST; 00056 DenseLinAlgPack::VopV_assert_sizes( x.dim(), d.dim() ); 00057 const value_type 00058 min_num = std::numeric_limits<value_type>::min(), 00059 inf = std::numeric_limits<value_type>::max(); 00060 // Initialize statistics 00061 *max_term = 0.0; 00062 *max_k = 0; 00063 *min_term = inf; 00064 *min_k = 0; 00065 *av_term = 0.0; 00066 // Compute statistics 00067 DVectorSlice::const_iterator 00068 x_itr = x.begin(), 00069 d_itr = d.begin(); 00070 for( size_type i = 1; x_itr != x.end(); ++i, ++d_itr, ++x_itr ) { 00071 // Compute this ratio and make sure we are not dividing by zero. 00072 // We only care about ratios less than 1.0 and also deal 00073 // with the case that both x(i) and d(i) are zero (in which 00074 // case the ratio should be zero since x(i) == x(i) + d(i)). 00075 const value_type 00076 term = ST::magnitude(*d_itr) / ( 1 + ST::magnitude(*x_itr) ); 00077 if( term > *max_term ) { 00078 *max_term = term; 00079 *max_k = i; 00080 } 00081 if( term < *min_term ) { 00082 *min_term = term; 00083 *min_k = i; 00084 } 00085 *av_term += term; 00086 } 00087 *av_term = *av_term / x.dim(); 00088 }
1.7.6.1