mosesdecoder/contrib/other-builds/moses2/Weights.h
2015-10-24 14:36:30 +01:00

25 lines
283 B
C++

/*
* Weights.h
*
* Created on: 24 Oct 2015
* Author: hieu
*/
#ifndef WEIGHTS_H_
#define WEIGHTS_H_
#include "TypeDef.h"
class Weights {
public:
Weights();
virtual ~Weights();
SCORE operator[](size_t ind) const {
return 444.5f;
}
};
#endif /* WEIGHTS_H_ */