コード例 #1
0
ファイル: calendar.cpp プロジェクト: gitpan/ponie
UBool
Calendar::operator==(const Calendar& that) const
{
    UErrorCode status = U_ZERO_ERROR;
    return isEquivalentTo(that) &&
        getTimeInMillis(status) == that.getTimeInMillis(status) &&
        U_SUCCESS(status);
}
コード例 #2
0
ファイル: coloured_graph.cpp プロジェクト: KCL-Planning/L-RPG
bool ColouredGraphNodePredicates::isEquivalentTo(const ColouredGraphNodePredicates& other) const
{
	return isEquivalentTo(*other.predicates_, other.invariables_, other.objects_);
}
コード例 #3
0
ファイル: coloured_graph.cpp プロジェクト: KCL-Planning/L-RPG
bool ColouredGraphNodeGoal::isEquivalentTo(const ColouredGraphNodeGoal& atom) const
{
	return isEquivalentTo(*atom.grounded_atom_);
}