Skip to content
Snippets Groups Projects
Commit a520e39b authored by Markus Blatt's avatar Markus Blatt
Browse files

told svn to ignore some files

[[Imported from SVN: r629]]
parent d428ef7a
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,8 @@ dune-istl.pc
semantic.cache
configure.lineno
stamp-h1
dune-*.tar.gz
dune-?.?
dune-istl-*.tar.gz
dune-istl-?.?
ltmain.sh
dune
am
......@@ -128,7 +128,8 @@ void testCoarsenIndices(int N)
assert(mat.N()==mg.maxVertex());
bool visitedIterator[N*N];
bool* visitedIterator = new bool[N*N];
for(Vertex i=0; i < mg.maxVertex(); ++i)
visitedIterator[i]=false;
......@@ -138,6 +139,7 @@ void testCoarsenIndices(int N)
aggregatesMap, coarseIndices.size(),
Dune::EnumItem<GridFlag,GridAttributes::copy>());
delete[] visitedIterator;
pinfo.freeGlobalLookup();
productBuilder.calculate(mat, aggregatesMap, *coarseMat, coarseInfo, Dune::EnumItem<GridFlag,GridAttributes::copy>());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment