https://github.com/RichardMoot/LinearOne
Raw File
Tip revision: 55540e9a91b7a5c7722775f39ffbf50f5b472a7e authored by Richard Moot on 12 November 2020, 17:47:42 UTC
Update .gitignore
Tip revision: 55540e9
portray_graph_none.pl
% -*- Mode: Prolog -*-

% = portray_graph(+Graph)
%
% no graph output output

:- module(portray_graph_tikz, [portray_graph/1,graph_header/0,graph_footer/1,latex_graph/1]).

portray_graph(_).

graph_header.

graph_footer(_).

latex_graph(_).
back to top