Skip to content

Commit

Permalink
Update fCQAOA.f90
Browse files Browse the repository at this point in the history
  • Loading branch information
Edric-Matwiejew authored Aug 8, 2023
1 parent f2e3fa6 commit 9ae54bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fCQAOA.f90
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ subroutine evolve_n_dft( N, &
do i = local_i_offset + 1, local_i + local_i_offset
call get_index(i, n_dim, Ns, strides, inds)
do j = 1, n_dim
mixer(i - local_i*rank) = t_temp(j)*(mixer(i - local_i*rank) + eigenvalues(inds(j),j))
mixer(i - local_i*rank) = mixer(i - local_i*rank) + t_temp(j)*eigenvalues(inds(j),j)
enddo
enddo

Expand Down

0 comments on commit 9ae54bf

Please sign in to comment.