Browse Source

Merge pull request 'fix: conversion from unsigned long to uint_64 when using clang' (#51) from bug_conversion_unsignedlong_to_uint64 into main

Reviewed-on: https://git.pranger.xyz/TEMPEST/tempest-devel/pulls/51
tempestpy_adaptions
Stefan Pranger 2 years ago
parent
commit
8da3234353
  1. 2
      src/storm/solver/Multiplier.h

2
src/storm/solver/Multiplier.h

@ -121,7 +121,7 @@ namespace storm {
*/
void repeatedMultiplyAndReduce(Environment const& env, OptimizationDirection const& dir, std::vector<ValueType>& x, std::vector<ValueType> const* b, uint64_t n, storm::storage::BitVector const* dirOverride = nullptr) const;
void repeatedMultiplyAndReduceWithChoices(const Environment &env, const OptimizationDirection &dir, std::vector<ValueType> &x, const std::vector<ValueType> *b, uint64_t n, const storage::BitVector *dirOverride, std::vector<ValueType> &choiceValues, std::vector<unsigned long> rowGroupIndices) const;
void repeatedMultiplyAndReduceWithChoices(const Environment &env, const OptimizationDirection &dir, std::vector<ValueType> &x, const std::vector<ValueType> *b, uint64_t n, const storage::BitVector *dirOverride, std::vector<ValueType> &choiceValues, std::vector<uint64_t> rowGroupIndices) const;
/*!
* Multiplies the row with the given index with x and adds the result to the provided value

Loading…
Cancel
Save