From 4b64cf486f5c999fd8167758cae27839f3b50848 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Sat, 3 Sep 2016 00:34:27 +0530 Subject: Structure updated and intqpipopt files added --- .../linux/include/coin/BonArraysHelpers.hpp | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 newstructure/thirdparty/linux/include/coin/BonArraysHelpers.hpp (limited to 'newstructure/thirdparty/linux/include/coin/BonArraysHelpers.hpp') diff --git a/newstructure/thirdparty/linux/include/coin/BonArraysHelpers.hpp b/newstructure/thirdparty/linux/include/coin/BonArraysHelpers.hpp new file mode 100644 index 0000000..a397fb8 --- /dev/null +++ b/newstructure/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 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 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 + -- cgit