Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

Opal maps

Merged snuverink_j requested to merge OPAL-maps into master
3 files
+ 7
22
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -2,8 +2,6 @@
#include "Utilities/MSLang/ArgumentExtractor.h"
#include "Utilities/MSLang/matheval.h"
#include <boost/regex.hpp>
namespace mslang {
void Repeat::print(int indentwidth) {
std::string indent(indentwidth, ' ');
@@ -24,7 +22,7 @@ namespace mslang {
const unsigned int size = bfuncs.size();
AffineTransformation current_trafo = trafo;
for (unsigned int i = 0; i < N_m; ++ i) {
for (int i = 0; i < N_m; ++ i) {
for (unsigned int j = 0; j < size; ++ j) {
Base *obj = bfuncs[j]->clone();
obj->trafo_m = obj->trafo_m.mult(current_trafo);
Loading