Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaKostadinov committed Jan 6, 2023
1 parent 86d03ad commit ae60450
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified bin/dirac.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#define B 2.0f
#define N 4u
#define T 160
#define T 1
#define DT 0.1f

int main()
Expand Down
4 changes: 2 additions & 2 deletions src/wavefunc2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ void WaveFunc2::evolve(float _dt_, Scalar2* _toPotential_)
Complex wingCoef = Imag(iwingCoef) ;
Complex two = Real(2.0f) ;

for (uint32_t i = 0u; i < tempXSize; i++)
for (uint32_t j = 0u; j < tempYSize; j++)
for (uint32_t j = 0u; j < tempYSize; j++)
for (uint32_t i = 0u; i < tempXSize; i++)
{
if (i == 0u)
{
Expand Down

0 comments on commit ae60450

Please sign in to comment.