memgraph/include/storage/model/properties/int64.hpp
Kruno Tomola Fabro 530be96b36 .FIX T68
.FIX T67
.FIX T65

Modifed astar main for benchmark.
Experimented with map of best visited and confirmed:
-it is faster by 25%
-observed that it founds best resoult
-loses some non best resoults

Added convinent method at() to get property from RecordAccessor.
Method requires  value_ref() method on property object.
2016-08-15 13:21:38 +01:00

16 lines
306 B
C++

#pragma once
#include "storage/model/properties/integral.hpp"
class Int64 : public Integral<Int64>
{
public:
static constexpr Flags type = Flags::Int64;
Int64(int64_t value) : Integral(Flags::Int64), value(value) {}
int64_t const &value_ref() const { return value; }
int64_t value;
};