<h3>Specific improvements</h3>
<ol>
- <li>New: There is a new namespace TimeStepping for the algorithms that do time
- integrations. In this new namespace, several Runge-Kutta methods have been
+ <li>Fixed: There was an indexing error in GridIn::read_vtk() that triggered
+ for some input files. This is now fixed.
+ <br>
+ (Mayank Sabharwal, 2014/02/19)
+
+ <li>New: There is a new namespace TimeStepping for the algorithms that do time
+ integrations. In this new namespace, several Runge-Kutta methods have been
implemented: explicit methods, implicit methods, and embedded explicit methods.
<br>
(Damien Lebrun-Grandie, Bruno Turcksin, 2014/02/17)
// ---------------------------------------------------------------------
// $Id$
//
-// Copyright (C) 1999 - 2013 by the deal.II authors
+// Copyright (C) 1999 - 2014 by the deal.II authors
//
// This file is part of the deal.II library.
//
{
subcelldata.boundary_quads.back().vertices[j] = vertex_indices[subcelldata.boundary_quads.back().vertices[j]];
}
- quad_indices[count] = count + 1;
+ quad_indices[no_quads] = no_quads + 1;
no_quads++;
}
{
subcelldata.boundary_lines.back().vertices[j] = vertex_indices[subcelldata.boundary_lines.back().vertices[j]];
}
- line_indices[count] = count + 1;
+ line_indices[no_lines] = no_lines + 1;
no_lines++;
}