From: Roy S. <roy...@ic...> - 2018-07-24 13:29:27
|
On Tue, 24 Jul 2018, Nikhil Vaidya wrote: > Thanks for the answer. I tried removing the particular initialize call and > ran it again. This time I get the following error message: > > Assertion `proc < _first_df.size()' failed. > proc = 0 > _first_df.size() = 0 That's an assertion failure from the DofMap being uninitialized, which would mean the whole System hasn't been initialized. It looks as if you've somehow gone from 2 initializations straight to 0. (or to 1 initialization which comes too late) --- Roy |