00001 00002 // Title : PCGeneralizedVelocityMinimization.h (GVL) 00003 // Project : OSCAR Version 2.0 00004 // Created : 01/22/03 00005 // Author : Mark Tisius and Chetan Kapoor 00006 // Platforms : All 00007 // Copyright : The University of Texas at Austin, 2003. All rights reserved. 00008 // 00009 // This software and documentation constitute an unpublished work 00010 // and contain valuable trade secrets and proprietary information 00011 // belonging to University. None of the foregoing material may be 00012 // copied or duplicated or disclosed without the express, written 00013 // permission of University. UNIVERSITY EXPRESSLY DISCLAIMS ANY 00014 // AND ALL WARRANTIES CONCERNING THIS SOFTWARE AND DOCUMENTATION, 00015 // INCLUDING ANY WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 00016 // PARTICULAR PURPOSE, AND WARRANTIES OF PERFORMANCE, AND ANY WARRANTY 00017 // THAT MIGHT OTHERWISE ARISE FROM COURSE OF DEALING OR USAGE OF TRADE. 00018 // NO WARRANTY IS EITHER EXPRESS OR IMPLIED WITH RESPECT TO THE USE OF 00019 // THE SOFTWARE OR DOCUMENTATION. Under no circumstances shall 00020 // University be liable for incidental, special, indirect, direct or 00021 // consequential damages or loss of profits, interruption of business, 00022 // or related expenses which may arise from use of software or documentation, 00023 // including but not limited to those resulting from defects in software 00024 // and/or documentation, or loss or inaccuracy of data of any kind. 00025 // 00026 // Purpose : This file contains the declaration of the class PCGeneralizedVelocityMinimization 00027 //----------------------------------------------------------------------------- 00028 // Classes : None 00029 // 00030 // Global 00031 // Functions : None 00032 // Global 00033 // Variables : None 00034 //----------------------------------------------------------------------------- 00035 // $Revisions$ 00036 // $Log: PCGeneralizedVelocityMinimization.h,v $ 00037 // Revision 1.6 2005/03/14 22:10:21 pmarch 00038 // Added to namespace OSCAR and removed "RR" from front of class names. 00039 // 00040 // Revision 1.5 2004/07/26 23:05:39 chetan 00041 // Made changes to compile with Warning Level 4 and also under the latest C++ standard. Also made compilable with VC extensions turned off 00042 // 00043 // Revision 1.4 2004/05/28 21:06:11 eswint 00044 // - Changed \ingroup Performance Criteria to \ingroup PerformanceCriteria 00045 // 00046 // Revision 1.3 2004/05/28 19:06:35 eswint 00047 // - Added the \ingroup PerformanceCriteria for Doxygen commenting 00048 // 00049 // Revision 1.2 2003/09/08 22:28:20 mtisius 00050 // Making sure everything committed properly 00051 // 00052 // Revision 1.1 2003/08/27 17:54:19 ndesai 00053 // PerformanceCriteria files being added to CVS 00054 // 00055 // Revision 1.1 2003/08/14 21:03:07 mtisius 00056 // Added files to Module 00057 // 00058 // 00060 #ifndef PCGeneralizedVelocityMinimization_h 00061 #define PCGeneralizedVelocityMinimization_h 00062 00063 #include "PCJacobianPseudoInverse.h" 00064 00066 namespace OSCAR { 00067 00080 class PCGeneralizedVelocityMinimization : public PCJacobianPseudoInverse 00081 { 00082 public: 00083 00094 PCGeneralizedVelocityMinimization(FKJacobian* fkJacobian, 00095 MinOrMax minOrMax = Minimize, 00096 double criticalLimit = -1, 00097 double weight = 1.0, 00098 double exponent = 1.0, 00099 const String& criteriaName = String("GVM")); 00100 00106 PCGeneralizedVelocityMinimization(const PCGeneralizedVelocityMinimization& crit); 00107 00114 PCGeneralizedVelocityMinimization& operator=(const PCGeneralizedVelocityMinimization& crit); 00115 00119 virtual ~PCGeneralizedVelocityMinimization(); 00120 00121 00122 protected: 00123 00124 virtual bool computeCriteria(RepositoryList& repoList); 00125 00126 }; 00127 00128 //#include "GeneralizedVelocityMinimization.ipp" 00129 } 00130 #endif /* GeneralizedVelocityMinimization_h */
| RRG Homepage | OSCAR Overview | OSCAR Tutorials | Simulations |