Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Meadows committed Jun 27, 2023
1 parent e9e104e commit f2333f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

# bump this version as necessary
echo "1.0.1-dev3" > version.txt
echo "1.0.1-dev4" > version.txt

echo $(pwd)

Expand Down
2 changes: 1 addition & 1 deletion glh_linear/include/glh/glh_linear.h
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ namespace glh
// find out which row should be on top
for(p=i+1;p<4;p++)
if(real(std::fabs(s[p][i]/scp[p])) > scp_max)
{ scp_max = real(std::std::fabs(s[p][i]/scp[p])); pivot_to = p; }
{ scp_max = real(std::fabs(s[p][i]/scp[p])); pivot_to = p; }
// Pivot if necessary
if(pivot_to != i)
{
Expand Down

0 comments on commit f2333f4

Please sign in to comment.