Skip to content
Snippets Groups Projects
Commit 7a63cf01 authored by Richard Comblen's avatar Richard Comblen
Browse files

Fixed typo

parent c4529a00
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,6 @@
#include "dgLimiter.h"
#include "dgAlgorithm.h"
#include "dgGroupOfElements.h"
#include "bindings.h"
double dgRungeKutta::iterateEuler(const dgConservationLaw *claw, double dt, dgDofContainer *solution) {
double A[] = {0};
......@@ -72,6 +71,9 @@ double dgRungeKutta::diagonalRK (const dgConservationLaw *claw,
dgRungeKutta::dgRungeKutta():_limiter(NULL) {}
#include "Bindings.h"
void dgRungeKutta::registerBindings(binding *b) {
classBinding *cb = b->addClass<dgRungeKutta>("dgRungeKutta");
cb->setDescription("various explicit Runge-Kutta time stepping schemes");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment