Skip to content

Commit

Permalink
Update dependencies and make new routines visible.
Browse files Browse the repository at this point in the history
  • Loading branch information
irukoa committed Sep 12, 2024
1 parent 0ce9954 commit 744aace
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/main.F90
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ program main

implicit none

character(len=10) :: ver = "1.0.0"
character(len=10) :: ver = "1.0.1"

call MPI_INIT(ierror)

Expand Down
4 changes: 2 additions & 2 deletions fpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "SsTC_driver"
version = "1.0.0"
version = "1.0.1"
license = "GNU General Public License v3.0"
author = "Álvaro R. Puente-Uriona"
maintainer = "[email protected]"
Expand All @@ -24,7 +24,7 @@ source-form = "free"

[dependencies]
MAC = { git="https://github.com/irukoa/MAC.git", tag = "v1.0.0" }
WannInt = { git="https://github.com/irukoa/WannInt.git", tag = "v1.0.0" }
WannInt = { git="https://github.com/irukoa/WannInt.git", tag = "v1.0.1" }
mpi = "*"
openmp = "*"

Expand Down
3 changes: 2 additions & 1 deletion src/SsTC_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module SsTC_driver
get_MPI_task_partition
use SsTC_driver_utils, only: kpath, kslice, crys_to_cart, cart_to_crys, kpath_length
use MAC, only: container_specifier, container
use WannInt, only: crystal, diagonalize, &
use WannInt, only: crystal, diagonalize, inverse, &
dirac_delta, &
deg_list, schur, &
SVD, expsh, logu
Expand All @@ -27,6 +27,7 @@ module SsTC_driver
public :: container_specifier, container
public :: crystal
public :: diagonalize
public :: inverse
public :: dirac_delta
public :: deg_list
public :: schur
Expand Down

0 comments on commit 744aace

Please sign in to comment.