initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / test / DLList / DLListTest.C
blob5ce85475638204d9db8d83c7dc2926630b0439e1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Application
27 Description
29 \*---------------------------------------------------------------------------*/
31 #include "OSspecific.H"
33 #include "IOstreams.H"
34 #include "DLList.H"
36 using namespace Foam;
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
39 //  Main program:
41 int main(int argc, char *argv[])
43     DLList<scalar> myList;
45     for (int i = 0; i<10; i++)
46     {
47         myList.append(1.3*i);
48     }
50     myList.append(100.3);
51     myList.append(500.3);
53     Info<< nl << "And again using STL iterator: " << nl << endl;
55     for
56     (
57         DLList<scalar>::iterator iter = myList.begin();
58         iter != myList.end();
59         ++iter
60     )
61     {
62         Info<< "element:" << *iter << endl;
63     }
66     Info<< nl << "And again using the same STL iterator: " << nl << endl;
68     for
69     (
70         DLList<scalar>::iterator iter = myList.begin();
71         iter != myList.end();
72         ++iter
73     )
74     {
75         Info<< "Removing " << myList.remove(iter) << endl;
76     }
78     myList.append(500.3);
79     myList.append(100.3);
82     Info<< nl << "And again using STL const_iterator: " << nl << endl;
84     const DLList<scalar>& const_myList = myList;
86     for
87     (
88         DLList<scalar>::const_iterator iter = const_myList.begin();
89         iter != const_myList.end();
90         ++iter
91     )
92     {
93         Info<< "element:" << *iter << endl;
94     }
96     myList.swapUp(myList.DLListBase::first());
97     myList.swapUp(myList.DLListBase::last());
99     for
100     (
101         DLList<scalar>::const_iterator iter = const_myList.begin();
102         iter != const_myList.end();
103         ++iter
104     )
105     {
106         Info<< "element:" << *iter << endl;
107     }
109     myList.swapDown(myList.DLListBase::first());
110     myList.swapDown(myList.DLListBase::last());
112     for
113     (
114         DLList<scalar>::const_iterator iter = const_myList.begin();
115         iter != const_myList.end();
116         ++iter
117     )
118     {
119         Info<< "element:" << *iter << endl;
120     }
123     Info<< nl << "Testing transfer: " << nl << endl;
124     Info<< "original: " << myList << endl;
126     DLList<scalar> newList;
127     newList.transfer(myList);
129     Info<< nl << "source: " << myList << nl
130         << nl << "target: " << newList << endl;
133     Info<< nl << "Done." << endl;
134     return 0;
138 // ************************************************************************* //