Dear all, In following line: line 4545 of /include/deal.II/matrix_free/fe_evaluation.h: VectorizedArray<Number> half = make_vectorized_array (0.5);
0.5 is interpreted as double and it leads to using make_vectorized_array<double>. That is OK if Number=double but for any other type (eg. float) it results is compilation error. It should be replaced by: VectorizedArray<Number> half = make_vectorized_array<Number> (0.5); Michał -- The deal.II project is located at http://www.dealii.org/ For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en --- You received this message because you are subscribed to the Google Groups "deal.II User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
