Exemple #1
0
 public bool ChkOSubjPredObj0(string subj, string pred, string obj)
 {
     // Шкалу добавлю позднее
     if (false && range > 0)
     {
         int code = Scale1.Code(range, subj.GetHashCode(), pred.GetHashCode(), obj.GetHashCode());
         //string word = (string)oscale.Root.Element(Scale1.GetArrIndex(code)).Get();
         //string tb = Scale1.GetFromWord(word, code);
         int tb = scale[code];
         if (tb == 0)
         {
             return(false);
         }
         // else if (tb == 1) return true; -- это был источник ошибки
         // else надо считаль длинно, см. далее
     }
     return(!spo_o_index.GetFirst(ent =>
     {
         string su = (string)ent.Field(0).Get();
         int cmp = su.CompareTo(subj);
         if (cmp != 0)
         {
             return cmp;
         }
         string pr = (string)ent.Field(1).Get();
         cmp = pr.CompareTo(pred);
         if (cmp != 0)
         {
             return cmp;
         }
         string ob = (string)ent.Field(2).Get();
         return ob.CompareTo(obj);
     }).IsEmpty);
     //return !spo_o_index.GetFirstByKey(new SubjPredObjInt() { subj = subj, pred = pred, obj = obj }).IsEmpty;
 }
Exemple #2
0
        private void CreateScale()
        {
            long len = otriples.Root.Count() - 1;
            int  r   = 1;

            while (len != 0)
            {
                len = len >> 1; r++;
            }

            range = r + 2; //r + 4; // здесь 4 - фактор "разрежения" шкалы, можно меньше
            scale = new Scale1(range);
            foreach (object[] tr in otriples.Root.ElementValues())
            {
                string subj = (string)tr[0];
                string pred = (string)tr[1];
                string obj  = (string)tr[2];
                int    code = Scale1.Code(range, subj.GetHashCode(), pred.GetHashCode(), obj.GetHashCode());
                scale[code] = 1;
            }
        }
Exemple #3
0
 // Проверка наличия объектного триплета через шкалу. Если false - точно нет, при true надо продолжать проверку
 public bool ChkInScale(string subj, string pred, string obj)
 {
     if (range > 0)
     {
         int code = Scale1.Code(range, subj.GetHashCode(), pred.GetHashCode(), obj.GetHashCode());
         int bit;
         if (filescale)
         {
             int word = (int)oscale.Root.Element(Scale1.GetArrIndex(code)).Get();
             bit = Scale1.GetFromWord(word, code);
         }
         else // if (memoryscale)
         {
             bit = scale[code];
         }
         if (bit == 0)
         {
             return(false);
         }
     }
     return(true);
 }