Peano
Loading...
Searching...
No Matches
test_LagrangeBasis.py
Go to the documentation of this file.
1#!/usr/bin/env python3
3
4import pprint
5
6order = 3
7nodesPerAxis = order+1
8for basis in [ GaussLegendreBasis(nodesPerAxis), GaussLobattoBasis(nodesPerAxis) ]:
9 d = {}
10 basis._init_dictionary_with_default_parameters(d)
11 print(d["BASIS_DECLARATIONS"])
12 print(d["BASIS_INITIALIZERS"])