Skip to content

Commit

Permalink
force explicit dets
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoRenaud committed Jan 20, 2025
1 parent 67a3eea commit 39c6be6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qmctorch/wavefunction/pooling/slater_pooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ def forward(self, input):
if self.config_method.startswith("cas("):
return self.det_explicit(input)
else:
if self.use_explicit_operator:
return self.det_explicit(input)
return self.det_single_double(input)

def get_slater_matrices(self, input):
Expand Down

0 comments on commit 39c6be6

Please sign in to comment.