530be96b36
.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.
19 lines
402 B
C++
19 lines
402 B
C++
#pragma once
|
|
|
|
#include "storage/model/properties/double.hpp"
|
|
#include "storage/model/properties/floating.hpp"
|
|
|
|
class Float : public Floating<Float>
|
|
{
|
|
public:
|
|
static constexpr Flags type = Flags::Float;
|
|
|
|
Float(float value) : Floating(Flags::Float), value(value) {}
|
|
|
|
operator Double() const { return Double(value); }
|
|
|
|
float const &value_ref() const { return value; }
|
|
|
|
float value;
|
|
};
|