Skip to content

Commit

Permalink
Address comments (idaholab#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Schunert committed Jan 9, 2020
1 parent e005643 commit 20e197c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/utils/PolyatomicDamageEnergyFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PolyatomicDamageEnergyFunction : public PolyatomicDisplacementFunctionBase
return i;
};

/// override the inverseMapIndex function: retrieves n given ijk
/// override the inverseMapIndex function: retrieves ijl given n
void inverseMapIndex(unsigned int n,
unsigned int & i,
unsigned int & j,
Expand Down
2 changes: 1 addition & 1 deletion include/utils/PolyatomicDisplacementDerivativeFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class PolyatomicDisplacementDerivativeFunction : public PolyatomicDisplacementFu
return i + j * _n_species + l * _n_species * _n_species;
};

/// override the inverseMapIndex function: retrieves n given ijk
/// override the inverseMapIndex function: retrieves ijl given n
void inverseMapIndex(unsigned int n,
unsigned int & i,
unsigned int & j,
Expand Down
2 changes: 1 addition & 1 deletion include/utils/PolyatomicDisplacementFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PolyatomicDisplacementFunction : public PolyatomicDisplacementFunctionBase
return i + j * _n_species;
};

/// override the inverseMapIndex function: retrieves n given ijk
/// override the inverseMapIndex function: retrieves ijl given n
void inverseMapIndex(unsigned int n,
unsigned int & i,
unsigned int & j,
Expand Down

0 comments on commit 20e197c

Please sign in to comment.