← Back to team overview

ffc team mailing list archive

[Fwd: [Branch ~ffc-core/ffc/main] Rev 1360: Import default_parameters in main interface]

 

I think that you broke something,

  No module named parameters

Garth

-------- Original Message --------
Subject: [Branch ~ffc-core/ffc/main] Rev 1360: Import
default_parameters in	main interface
Date: Mon, 01 Feb 2010 08:36:19 -0000
From: noreply@xxxxxxxxxxxxx
Reply-To: noreply@xxxxxxxxxxxxx
To: Garth Wells <gnw20@xxxxxxxxx>

------------------------------------------------------------
revno: 1360
committer: Anders Logg <logg@xxxxxxxxx>
branch nick: ffc-main
timestamp: Mon 2010-02-01 09:33:15 +0100
message:
  Import default_parameters in main interface
modified:
  ffc/__init__.py


--
lp:ffc
https://code.launchpad.net/~ffc-core/ffc/main

Your team FFC Core Team is subscribed to branch lp:ffc.
To unsubscribe from this branch go to
https://code.launchpad.net/~ffc-core/ffc/main/+edit-subscription.



=== modified file 'ffc/__init__.py'
--- ffc/__init__.py	2009-12-16 19:40:51 +0000
+++ ffc/__init__.py	2010-02-01 08:33:15 +0000
@@ -4,11 +4,12 @@
 
 FFC compiles finite element variational forms into C++ code.
 
-The interface consists of the following three functions:
+The interface consists of the following functions:
 
-  compile_form    - Compilation of forms
-  compile_element - Compilation of finite elements
-  jit             - Just-In-Time compilation of forms and elements
+  compile_form       - Compilation of forms
+  compile_element    - Compilation of finite elements
+  jit                - Just-In-Time compilation of forms and elements
+  default_parameters - Default parameter values for FFC
 """
 
 # Import compiler functions
@@ -16,3 +17,6 @@
 
 # Import JIT compiler
 from ffc.jit import jit
+
+# Import default parameters
+from parameters import default_parameters