UtilHash.h

Go to the documentation of this file.
00001 //===========================================================================//
00002 // This file is part of the DIP Solver Framework.                            //
00003 //                                                                           //
00004 // DIP is distributed under the Eclipse Public License as part of the        //
00005 // COIN-OR repository (http://www.coin-or.org).                              //
00006 //                                                                           //
00007 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com)       //
00008 //                                                                           //
00009 // Conceptual Design: Matthew Galati, SAS Institute Inc.                     //
00010 //                    Ted Ralphs, Lehigh University                          //
00011 //                                                                           //
00012 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs    //
00013 // All Rights Reserved.                                                      //
00014 //===========================================================================//
00015 
00016 
00017 #ifndef UTIL_HASH_INCLUDED
00018 #define UTIL_HASH_INCLUDED
00019 
00020 #include <string>
00021 
00022 std::string UtilCreateStringHash(const int      len,
00023                                  const double* els,
00024                                  const int      precision = 6);
00025 
00026 std::string UtilCreateStringHash(const int      len,
00027                                  const int*     ind,
00028                                  const double* els,
00029                                  const int      precision = 6);
00030 std::string UtilCreateStringHash(const int      len,
00031                                  const int*     ind,
00032                                  const double   els,
00033                                  const int      precision = 6);
00034 std::string UtilCreateStringHash(const int      len,
00035                                  const int*     ind,
00036                                  const double* els,
00037                                  const char     sense,
00038                                  const double   rhs,
00039                                  const int      precision = 6);
00040 
00041 #endif

Generated on 5 Apr 2015 for Dip-All by  doxygen 1.6.1