Skip to content
Snippets Groups Projects
Commit fb863717 authored by mattijs's avatar mattijs
Browse files

ENH: Test ListOps on DynamicList.

parent 9bf63117
No related merge requests found
......@@ -27,6 +27,7 @@ Description
#include "DynamicList.H"
#include "IOstreams.H"
#include "ListOps.H"
using namespace Foam;
......@@ -185,6 +186,9 @@ int main(int argc, char *argv[])
dlE3 = dlE2; // assign identical
Info<< "<dlE3>" << dlE3 << "</dlE3>" << endl;
DynamicList<label> dlE4(reorder(identity(dlE3.size()), dlE3));
Info<< "<dlE4>" << dlE4 << "</dlE4>" << endl;
Info<< "\nEnd\n";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment