static bool ai_cache_hasTriple_verified(S a, S b, S c) { if (a == null || b == null || c == null) false; if (ai_useThoughtSpaces()) ret thoughtSpace().hasTriple_verified(symbol(a), symbol(b), symbol(c)); AI_CacheChecker checker = ai_cacheChecker(); if (checker != null && checker.hasTriple(symbol(a), symbol(b), symbol(c))) true; L webs = ai_fewestIndexedWebs_verified(a, b, c); bool x = webs_search_noVar_bool(webFromTriple(a, b, c), webs); ret x; } static bool ai_cache_hasTriple_verified(T3 t) { ret ai_cache_hasTriple_verified(t.a, t.b, t.c); }