/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation Copyright (C) 2017-2021 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Application Description Test label ranges \*---------------------------------------------------------------------------*/ #include "argList.H" #include "labelRanges.H" using namespace Foam; void printInfo(const labelRange& range) { Info<< "first " << range.first() << nl << "last " << range.last() << nl << "min " << range.min() << nl << "max " << range.max() << nl << "after " << range.after() << nl << "begin end " << *range.cbegin() << ' ' << *range.cend() << nl; // Info<< "rbegin rend " << *range.rbegin() << ' ' << *range.rend() << nl; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Main program: int main(int argc, char *argv[]) { argList::noParallel(); argList::noFunctionObjects(); argList::addArgument("start size .. startN sizeN"); argList::addVerbose("enable labelRange::debug"); argList::addNote ( "The default is to add ranges, use 'add' and 'del' to toggle\n\n" "Eg, 0 10 30 10 del 20 15" ); argList args(argc, argv, false, true); if (args.verbose()) { labelRange::debug = 1; } { labelRange range(5, 10); Info<< "identity: " << identity(range) << nl; } { Info<<"test sorting" << endl; DynamicList list1(10); list1.append(labelRange(25, 8)); list1.append(labelRange(8)); list1.append(labelRange(15, 5)); list1.append(labelRange(50, -10, true)); sort(list1); Info<<"sorted" << list1 << endl; } { Info<<"test intersections" << endl; labelRange range1(-15, 25); labelRange range2(7, 8); labelRange range3(-20, 8); labelRange range4(50, 8); Info<(argI); label size = args.get