AIMA.Core.Logic.Propositional.Algorithms.PLResolution.ClauseSymbols.getComplementedSymbols C# (CSharp) 메소드

getComplementedSymbols() 공개 메소드

public getComplementedSymbols ( ) : List
리턴 List
            public List<Symbol> getComplementedSymbols()
            {
                return SetOps.union(positiveInClause1NegativeInClause2,
                        negativeInClause1PositiveInClause2);
            }
PLResolution.ClauseSymbols