Skip to content
Snippets Groups Projects
Commit ce4d248b authored by Alexander Rose's avatar Alexander Rose
Browse files

use 'x' to join operator names together

parent bf9c52ca
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,8 @@ function getAssemblyOperators(matrices: Matrices, operatorNames: string[][], sta ...@@ -117,7 +117,8 @@ function getAssemblyOperators(matrices: Matrices, operatorNames: string[][], sta
} }
// TODO currently using the original operator name for the symmetry operator to be able // TODO currently using the original operator name for the symmetry operator to be able
// to link it to the original operator but it might be clearer to introduce an extra field??? // to link it to the original operator but it might be clearer to introduce an extra field???
operators[operators.length] = SymmetryOperator.create(`A-${op.join(',')}`, m); // Operator names are joined together by 'x' to indicate matrix multiplication.
operators[operators.length] = SymmetryOperator.create(`A-${op.join('x')}`, m);
} }
return operators; return operators;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment