Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/29/18 10:32:56 (6 years ago)
Author:
bburlacu
Message:

#2958: Native interpreter dlls: statically link against the visual C++ runtime

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.ExtLibs/HeuristicLab.NativeInterpreter/0.1/NativeInterpreter-0.1/src/interpreter.cpp

    r16274 r16333  
    5050    if (remainingRows > 0)
    5151    {
    52         for (int rowIndex = total; rowIndex < totalRows; rowIndex += remainingRows)
    53         {
    54             evaluate(code, codeLength, rows, rowIndex, remainingRows);
    55             std::memcpy(result + rowIndex, code[0].buf, remainingRows * sizeof(double));
    56         }
     52        evaluate(code, codeLength, rows, total, remainingRows);
     53        std::memcpy(result + total, code[0].buf, remainingRows * sizeof(double));
    5754    }
    5855    _aligned_free(buffer);
Note: See TracChangeset for help on using the changeset viewer.