Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Oct 4, 2024
2 parents abec69c + 9c3fe5e commit 5ede376
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test

on: [push]
on:
push:
schedule:
- cron: '0 0 1,15 * *' # JST 9:00 on 1st and 15th every month

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
cmake_minimum_required(VERSION 2.8.12...3.20.2 FATAL_ERROR)
project(DSQSS NONE)
set(DSQSS_VERSION 2.1-dev)

Expand Down
2 changes: 1 addition & 1 deletion tool/dsqss/lattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def load_dict(self, param: MutableMapping) -> None:

self.sites = []
self.ints = []
ncells = np.product(self.size)
ncells = np.prod(self.size)
bid = 0
for icell in range(ncells):
cell_coord = np.array(util.index2coord(icell, self.size))
Expand Down

0 comments on commit 5ede376

Please sign in to comment.