Internals

PAndQ.union_typeofFunction
union_typeof(xs)

Equivalent to Union{map(typeof, xs)...}.

Examples

julia> PAndQ.union_typeof((⊤, ¬, ∧))
Union{PAndQ.Interface.Operator{:tautology}, PAndQ.Interface.Operator{:not}, PAndQ.Interface.Operator{:and}}
source

PicoSAT

libpicosat

PAndQ.PicoSAT.picosat_satFunction
picosat_sat(pico_sat, limit)

Search for a satisfiable assignment of the pico_sat instance's proposition and return 0, 10, or 20 if the status is unknown, satisfiable, or unsatisfiable, respectively.

source
PAndQ.PicoSAT.picosat_derefFunction
picosat_deref(pico_sat, atom)

Return the assignment of the atom, where 1, -1, and 0 indicate true, false, and unknown, respectively.

This function must be called after verifying that the status of picosat_sat is satisfiable.

source

Utilities

PAndQ.PicoSAT.add_clauseFunction
add_clause(pico_sat, clause)

Mutate the pico_sat instance's proposition to be the conjunction of itself and the disjunctive clause.

source
PAndQ.PicoSAT.initializeFunction
initialize(clauses)

Return a PicoSAT pointer with its proposition being a conjunction of the disjunctive clauses.

source
PAndQ.PicoSAT.SolutionsType
Solutions
Solutions(clauses)

A stateful iterator of valuations that satisfy the given proposition.

Calling finalize on this iterator will first check whether it has already been finalized. If not, it will call picosat_reset on its PicoSAT pointer and set the pointer equal to C_NULL.

source
Base.eltypeFunction
eltype(::Type{Solutions})

The type of the elements generated by a Solutions iterator.

Examples

julia> eltype(PAndQ.PicoSAT.Solutions)
Base.Generator{Base.Iterators.Enumerate{Base.Iterators.Filter{Base.Fix2{typeof(!=), Int64}, Vector{Int32}}}, Base.Splat{typeof(*)}}
source
Base.IteratorSizeType
IteratorSize(::Type{Solutions})

Since counting the number of Solutions to a proposition is intractable, its IteratorSize is Base.SizeUnknown.

Examples

julia> Base.IteratorSize(PAndQ.PicoSAT.Solutions)
Base.SizeUnknown()
source
Base.isdoneFunction
isdone(solutions::Solutions, pico_sat = solutions.pico_sat)

Return a Boolean whether the pico_sat instance can yield any more solutions without advancing the Solutions iterator.

Finalize the iterator if it has not yet been finalized and is done.

source
Base.iterateFunction
iterate(solutions::Solutions, pico_sat = solutions.pico_sat)

If the status of pico_sat is_satisfiable, return a Tuple of the current solution and pico_sat. Otherwise, finalize the solutions and return nothing.

source
PAndQ.PicoSAT.print_dimacsFunction
print_dimacs(io, clauses)

Print the DIMACS format of the conjunctive clauses.

The io can be an IO or file path String to write to.

Examples

julia> PAndQ.PicoSAT.print_dimacs(stdout, [[-1, -2], [1, 2]])
p cnf 2 2
-1 -2 0
1 2 0

julia> PAndQ.PicoSAT.print_dimacs(stdout, [[1, -2], [-1, 2]])
p cnf 2 2
1 -2 0
-1 2 0
source

Interface

PAndQ.Interface.InterfaceErrorType
InterfaceError{F <: Function, O <: Operator, N <: Union{Nothing, Int}} <: Exception
InterfaceError(::F, ::O, ::N)

An Exception indicating that the function of type F has not been implemented for the value of type T.

If N is Nothing, then the function does not accept any propositions. Otherwise, N is the number of propositions given.

source
Base.showerrorFunction
showerror(::IO, ::InterfaceError)

Print a message indicating to implement a method of an interface.

source

Operators

Propositions

Types

Proposition
├─ Atom
│  ├─ Constant
│  └─ Variable
└─ Compound
   ├─ Clause
   ├─ Normal
   └─ Tree

Abstract

Concrete

AbstractTrees.jl

AbstractTrees.childrenFunction
children(::Union{Tree, Clause, Normal})

Return an iterator over the child nodes of the given proposition.

See also Tree, Clause, and Normal.

Examples

julia> @atomize PAndQ.children(p)
()

julia> @atomize PAndQ.children(¬p)
(PAndQ.Variable(:p),)

julia> @atomize PAndQ.children(p ∧ q)
(identical(PAndQ.Variable(:p)), identical(PAndQ.Variable(:q)))
source
AbstractTrees.printnodeFunction
printnode(::IO, ::Union{Operator, Proposition}; kwargs...)

Print the representation of the proposition's root node.

See also Operator and Proposition.

Examples

julia> @atomize PAndQ.printnode(stdout, p)
p
julia> @atomize PAndQ.printnode(stdout, ¬p)
¬
julia> @atomize PAndQ.printnode(stdout, p ∧ q)
∧
source

Utility

PAndQ.deconstructFunction
deconstruct(p)

Return (nodevalue(p), children(p)).

See also nodevalue and children.

Examples

julia> @atomize PAndQ.deconstruct(p)
(PAndQ.Variable(:p), ())

julia> @atomize PAndQ.deconstruct(¬p)
(PAndQ.Interface.Operator{:not}(), (PAndQ.Variable(:p),))

julia> @atomize PAndQ.deconstruct(p ∧ q)
(PAndQ.Interface.Operator{:and}(), (identical(PAndQ.Variable(:p)), identical(PAndQ.Variable(:q))))
source
PAndQ.load_or_errorFunction
load_or_error(x)

Return an expression that when evaluated returns x if PAndQ is defined and throws an Exception otherwise.

source
PAndQ.atomizeFunction
atomize(x)

If x is a symbol, return an expression that instantiates it as a Variable if it is undefined in the caller's scope. If isexpr(x, :$), return an expression that instantiates it as a Constant. If x is a different expression, traverse it with recursive calls to atomize. Otherise, return x.

source
PAndQ.distributeFunction
distribute(p)

Given a proposition in negation normal form, return that proposition in conjunction normal form.

source

Printing

Semantics

PAndQ.eval_pairsFunction
eval_pairs(f, pairs)

Define f(::typeof(left)) = right and f(::typeof(right)) = left for each pair left and right in pairs.

source