~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/nls/NonlinearProblem.cpp

  • Committer: Niclas Jansson
  • Date: 2011-06-10 14:33:43 UTC
  • Revision ID: njansson@csc.kth.se-20110610143343-d21p4am8rghiojfm
Added rudimentary header to binary files

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
// Last changed: 2006-09-02
6
6
 
7
7
#include <dolfin/log/dolfin_log.h>
8
 
#include "NonlinearProblem.h"
 
8
#include <dolfin/nls/NonlinearProblem.h>
9
9
 
10
10
using namespace dolfin;
11
11
 
22
22
//-----------------------------------------------------------------------------
23
23
void NonlinearProblem::form(GenericMatrix& A, GenericVector& b, const GenericVector& x)
24
24
{
25
 
  error("Nonlinear problem update for F(u) and J  has not been supplied by user.");
 
25
  error("Nonlinear problem update for F(u) and J has not been supplied by user.");
26
26
}
27
27
//-----------------------------------------------------------------------------
28
28
void NonlinearProblem::F(GenericVector& b, const GenericVector& x)
29
29
{
30
 
  error("Nonlinear problem update for F(u)  has not been supplied by user.");
 
30
  error("Nonlinear problem update for F(u) has not been supplied by user.");
31
31
}
32
32
//-----------------------------------------------------------------------------
33
33
void NonlinearProblem::J(GenericMatrix& A, const GenericVector& x)