We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ae34e commit e2af34aCopy full SHA for e2af34a
comp/postproc.cpp
@@ -9,6 +9,8 @@
9
*/
10
11
#include <comp.hpp>
12
+#include <variant>
13
+#include <optional>
14
15
namespace ngcomp
16
{
@@ -1228,7 +1230,6 @@ namespace ngcomp
1228
1230
1229
1231
1232
-#include <variant>
1233
#include "../fem/integratorcf.hpp"
1234
1235
namespace ngfem
fem/python_fem.cpp
@@ -893,7 +893,8 @@ cf : ngsolve.CoefficientFunction
893
"Evaluate on other element, as needed for DG jumps")
894
895
.def ("Derive", &CoefficientFunction::Derive,
896
- "Compute derivative with respect to argument")
+ "Compute directional derivative with respect to variable",
897
+ py::arg("variable"), py::arg("direction")=1.0)
898
899
// it's using the complex functions anyway ...
900
// it seems to take the double-version now
0 commit comments