Skip to content

Commit f8eccbc

Browse files
committed
Removed sleef as default dependency
1 parent 5a9e36b commit f8eccbc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[features]
22
sleef = ["rlst/sleef", "green-kernels/sleef", "ndelement/sleef", "ndgrid/sleef"]
33
strict = []
4-
default = ["sleef"]
4+
default = []
55

66
[package]
77
name = "bempp"

src/function.rs

+2
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,8 @@ where
509509
received_ghost_entity_dofs
510510
) {
511511
let local_index = entity_dofs[dim][entity][entity_dof];
512+
// Since we own the dof the corresponding entry in `global_dof_numbers` is already filled.
513+
// So we can use it to get the global dof number.
512514
ghost_global_dofs_to_send.push(global_dof_numbers[local_index]);
513515
ghost_local_dofs_to_send.push(local_index);
514516
}

0 commit comments

Comments
 (0)