コード例 #1
0
		public ExpDateTimePointFunction(string field, TimeUnit scale) : base(field, scale, "exp") { }
コード例 #2
0
		public GaussDateTimePointFunction(string field, TimeUnit scale) : base(field, scale, "gauss") { }
コード例 #3
0
 protected DateTimeDecayBaseScoreFunction(string field, TimeUnit scale, string decayType)
 {
     _field = field;
     _scale = scale;
     _decayType = decayType;
 }
コード例 #4
0
		public LinearDateTimePointFunction(string field, TimeUnit scale) : base(field, scale, "linear") { }
コード例 #5
0
		public ScanAndScrollConfiguration(TimeUnit lengthOfTime, int size)
		{
			_lengthOfTime = lengthOfTime;
			_size = size;
		}