Thread Previous • Date Previous • Date Next • Thread Next |
Marie Rognes wrote:
First, the following FIAT code: from FIAT.RaviartThomas import * from FIAT.shapes import *RT0 = RaviartThomas(TRIANGLE, 0) print RT0.dual_basis().entity_idsgives: {0: {0: [], 1: [], 2: []}, 1: {0: 0, 1: 1, 2: 2}, 2: []} Shouldn't this be {0: {0: [], 1: [], 2: []}, 1: {0: [0], 1: [1], 2: [2]}, 2: []} ?
I guess a more sensible suggestion would be{0: {0: [], 1: [], 2: []}, 1: {0: [0], 1: [1], 2: [2]}, 2: {0: []}}
-- Marie
Thread Previous • Date Previous • Date Next • Thread Next |