AIMA.Core.Logic.Propositional.Algorithms.PLResolution.ClauseSymbols.getComplementedSymbols C# (CSharp) Method

getComplementedSymbols() public method

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