/usr/local/lib/swipl/library/prolog_breakpoints.pl
All Application Manual Name SummaryHelp

  • swipl
    • library
      • error.pl
      • debug.pl
      • apply.pl -- Apply predicates on a list
      • lists.pl -- List Manipulation
      • broadcast.pl
      • shlib.pl
      • option.pl
      • thread_pool.pl -- Resource bounded thread management
      • gensym.pl -- Generate unique symbols
      • settings.pl
      • arithmetic.pl -- Extensible arithmetic
      • main.pl
      • readutil.pl
      • operators.pl -- Manage operators
      • pairs.pl
      • prolog_source.pl
      • record.pl
      • quasi_quotations.pl
      • pure_input.pl -- Pure Input from files and streams
      • solution_sequences.pl
      • ordsets.pl
      • random.pl
      • base64.pl
      • aggregate.pl
      • yall.pl
      • sandbox.pl -- Sandboxed Prolog code
      • apply_macros.pl -- Goal expansion rules to avoid meta-calling
      • assoc.pl
      • prolog_format.pl
      • predicate_options.pl
      • csv.pl
      • pprint.pl
      • atom.pl
      • modules.pl
      • occurs.pl
      • prolog_xref.pl
      • prolog_colour.pl -- Prolog syntax colouring support.
      • lazy_lists.pl
      • ugraphs.pl
      • url.pl
      • www_browser.pl
      • prolog_pack.pl
      • git.pl
      • rbtrees.pl
      • dif.pl
      • charsio.pl -- I/O on Lists of Character Codes
      • prolog_stack.pl
      • edinburgh.pl
      • prolog_clause.pl
      • prolog_breakpoints.pl -- Manage Prolog break-points
        • set_breakpoint/4
        • set_breakpoint/5
        • delete_breakpoint/1
        • breakpoint_property/2
        • set_breakpoint_condition/2
      • wfs.pl
      • dialect.pl
      • prolog_code.pl -- Utilities for reasoning about code
      • sort.pl
      • iostream.pl -- Utilities to deal with streams
      • dicts.pl
      • varnumbers.pl
      • make.pl
      • edit.pl
      • check.pl
      • backcomp.pl
      • date.pl -- Process dates and times
      • terms.pl
      • help.pl
      • explain.pl
      • listing.pl
      • persistency.pl
      • heaps.pl -- heaps/priority queues
      • rwlocks.pl
      • base32.pl -- Base32 encoding and decoding
      • codesio.pl
      • coinduction.pl
      • statistics.pl
      • utf8.pl
      • when.pl
      • quintus.pl
      • shell.pl -- Elementary shell commands
      • qsave.pl
      • zip.pl -- Access resource ZIP archives
      • prolog_autoload.pl
      • prolog_coverage.pl
      • ansi_term.pl
      • nb_set.pl -- Non-backtrackable sets
      • hashtable.pl
      • strings.pl
      • ctypes.pl -- Character code classification
      • thread.pl
      • tables.pl
      • writef.pl
      • increval.pl
      • oset.pl
      • system.pl
      • threadutil.pl -- Interactive thread utilities
      • prolog_debug.pl
      • prolog_profile.pl -- Execution profiler
      • portray_text.pl -- Portray text
      • prolog_history.pl
      • exceptions.pl
      • prolog_jiti.pl
      • optparse.pl
      • prolog_versions.pl
      • prolog_wrap.pl
      • macros.pl
 set_breakpoint_condition(+Id, +Cond) is det
Set a condition for of the breakpoint with given Id. The condition Cond is a string that represents a Prolog goal to be invoked whenever the breakpoint is reached, if goal fails the breakpoint is skipped and execution commences normally.

Variables in Cond that match by name to variables in the source definition of the clause in which the breakpoint is located are unified with the corresponding runtime value of the clause variables in the current execution frame, before evaluating the condition goal.

Errors
- existence_error(breakpoint, Id).