Skip to content

Commit

Permalink
MAINT: Use most-frequently used options as default options.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwboth committed Nov 4, 2023
1 parent f3f023a commit 1262d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/darsia/measure/wasserstein.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ def __init__(
self.verbose = self.options.get("verbose", False)
"""bool: verbosity"""

self.l1_mode = self.options.get("l1_mode", "constant_cell_projection")
self.l1_mode = self.options.get("l1_mode", "raviart_thomas")
"""str: mode for computing the l1 dissipation"""

self.mobility_mode = self.options.get("mobility_mode", "face_based")
self.mobility_mode = self.options.get("mobility_mode", "cell_based")
"""str: mode for computing the mobility"""

# Setup of method
Expand Down

0 comments on commit 1262d72

Please sign in to comment.