← Back to team overview

dolfin team mailing list archive

[HG DOLFIN] Fix input of matrix data from XML

 

One or more new changesets pushed to the primary dolfin repository.
A short summary of the last three changesets is included below.

changeset:   4301:0bb582213301e3976e9e930daa2904905dbf6a90
tag:         tip
user:        Anders Logg <logg@xxxxxxxxx>
date:        Sun Jun 15 00:10:08 2008 +0200
files:       ChangeLog dolfin/io/XMLMatrix.cpp dolfin/io/XMLMatrix.h
description:
Fix input of matrix data from XML


changeset:   4300:6e676bd4de1d3ede41aae774a4661aafb54aa86a
user:        Anders Logg <logg@xxxxxxxxx>
date:        Fri Jun 13 15:49:45 2008 +0200
files:       dolfin/common/Timer.h
description:
Add missing file


changeset:   4299:ed9eda2a501f333ea951170e4e7a78eaadd138f8
user:        Anders Logg <logg@xxxxxxxxx>
date:        Fri Jun 13 11:56:07 2008 +0200
files:       demo/pde/poisson/python/demo.py dolfin/common/dolfin_common.h dolfin/fem/Assembler.cpp dolfin/la/KrylovSolver.h dolfin/la/LUSolver.h dolfin/la/solve.cpp dolfin/log/Logger.cpp dolfin/log/Logger.h dolfin/log/log.cpp dolfin/log/log.h dolfin/ode/ODESolution.h dolfin/swig/dolfin_docstrings.i dolfin/swig/dolfin_headers.i site-packages/dolfin/__init__.py
description:
Add support for setting timers and printing summaries of tasks.

A timer can be used for timing tasks. The basic usage is

  Timer timer("Assembling over cells");

The timer is started at construction and timing ends
when the timer is destroyed (goes out of scope). It is
also possible to start and stop a timer explicitly by

  timer.start();
  timer.stop();

Timings are stored globally and a summary may be printed
by calling

  summary();

Summary report needs to be improved.

----------------------------------------------------------------------
For more details, visit http://www.fenics.org/hg/dolfin