diff options
author | Georgey | 2017-07-05 11:40:43 +0530 |
---|---|---|
committer | Georgey | 2017-07-05 11:40:43 +0530 |
commit | 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (patch) | |
tree | b343c0ee5609433c80e0de1db8b6886c9126dc2d /thirdparty/linux/include/coin/BonArraysHelpers.hpp | |
parent | 5b72577efe080c5294b32d804e4d26351fef30bc (diff) | |
download | FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.gz FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.tar.bz2 FOSSEE-Optimization-toolbox-938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427.zip |
Added linux shared libraries and header files for int and ecos functions
Diffstat (limited to 'thirdparty/linux/include/coin/BonArraysHelpers.hpp')
-rw-r--r-- | thirdparty/linux/include/coin/BonArraysHelpers.hpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/thirdparty/linux/include/coin/BonArraysHelpers.hpp b/thirdparty/linux/include/coin/BonArraysHelpers.hpp new file mode 100644 index 0000000..a397fb8 --- /dev/null +++ b/thirdparty/linux/include/coin/BonArraysHelpers.hpp @@ -0,0 +1,52 @@ +// (C) Copyright International Business Machines Corporation 2007 +// All Rights Reserved. +// This code is published under the Eclipse Public License. +// +// Authors : +// Pierre Bonami, International Business Machines Corporation +// +// Date : 10/06/2007 + +#include "CoinHelperFunctions.hpp" +#ifndef BonArraysHelpers_H +#define BonArraysHelpers_H + +namespace Bonmin { +template <class X> void +resizeAndCopyArray(X *& array, unsigned int oldSize, unsigned int newSize){ + if(newSize == 0){ + if(oldSize > 0){ + delete [] array; + array = NULL; + } + return; + } + X * buffy = new X[newSize]; + if(oldSize > 0){ + if(oldSize < newSize) + CoinCopyN(array, oldSize, buffy); + else + CoinCopyN(array, newSize, buffy); + delete [] array; + } + array = buffy; +} + +template <class X> void +resizeAndCopyArray(X *& array, unsigned int oldSize, unsigned int newSize, + unsigned int& capacity){ + if(newSize > capacity){ + X * buffy = new X[newSize]; + if(oldSize > 0){ + CoinCopyN(array, oldSize, buffy); + delete [] array; + } + array = buffy; + } + else { + newSize = oldSize; + } +} +}// Ends Bonmin namespace +#endif + |