Skip to content

Commit

Permalink
Merge pull request #166 from BerkeleyLab/chores
Browse files Browse the repository at this point in the history
Chores
  • Loading branch information
rouson committed Dec 27, 2023
2 parents f10d219 + 8006018 commit 91ca0c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
File renamed without changes.
7 changes: 1 addition & 6 deletions fpm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ license = "see LICENSE.txt"
author = "Damian Rouson, David Torres, Dominick Martinez, Jeremiah Bailey, and Brad Richardson"
maintainer = "rouson@lbl.gov"

[[executable]]
name = "matcha"
source-dir="app"
main = "main.F90"

[dependencies]
assert = {git = "https://github.com/sourceryinstitute/assert", tag = "1.5.0"}
sourcery = {git = "https://github.com/sourceryinstitute/sourcery", tag = "4.5.0"}
sourcery = {git = "https://github.com/sourceryinstitute/sourcery", tag = "4.5.1"}
8 changes: 4 additions & 4 deletions src/matcha/subdomain_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ module subdomain_m
contains
procedure, pass(self) :: define
procedure, pass(self) :: step
procedure :: laplacian
generic :: operator(.laplacian.) => laplacian
procedure, pass(rhs) :: multiply
generic :: operator(.laplacian.) => laplacian
generic :: operator(*) => multiply
procedure :: add
generic :: operator(+) => add
procedure :: assign_and_sync
generic :: assignment(=) => assign_and_sync
procedure dx
procedure dy
procedure dz
procedure values
procedure, private :: laplacian
procedure, private :: add
procedure, private :: assign_and_sync
end type

interface
Expand Down

0 comments on commit 91ca0c6

Please sign in to comment.