Skip to content

Commit

Permalink
DOC: prefer HTTPS
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
slivingston committed Apr 1, 2019
1 parent 6c28d26 commit 043e72e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ synthesized strategy. A key to the choices, including functions that provide
it, is:

- `txt` : simple plaintext format (not standard); list_aut_dump()
- `dot` : [Graphviz dot](http://www.graphviz.org/); dot_aut_dump()
- `dot` : [Graphviz dot](https://www.graphviz.org/); dot_aut_dump()
- `aut` : [gr1c automaton format](#gr1cautformat); aut_aut_dump()
- `json` : [strategy in JSON](#gr1cjson); json_aut_dump()
- `tulip` : [tulipcon XML](#tulipconxml); tulip_aut_dump()
Expand All @@ -20,7 +20,7 @@ format](#edgechangeset). The relevant command-line argument is "-e FILE".

<h2 id="gr1cjson">strategy in JSON</h2>

The gross file formatting is [JSON](http://json.org/). The details of what gr1c
The gross file formatting is [JSON](https://json.org/). The details of what gr1c
provides are versioned. The current version is 1. The only difference with
version 0 is the addition of the node field "initial". A key to entries is:

Expand Down
14 changes: 7 additions & 7 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ executable is built,
Aside from standard C libraries and a basic development environment (gcc, etc.),
**gr1c** depends on [CUDD](http://vlsi.colorado.edu/~fabio/CUDD/), the CU
Decision Diagram package by Fabio Somenzi and others. Also, gr1c interactive
mode optionally uses [GNU Readline](http://www.gnu.org/software/readline)
mode optionally uses [GNU Readline](https://www.gnu.org/software/readline)
(disabled by default; selected via `USE_READLINE` definition in Makefile).
The parser generator [Bison](http://www.gnu.org/software/bison/) and the lexical
analyzer [flex](http://flex.sourceforge.net/) are required to build gr1c. Other
The parser generator [Bison](https://www.gnu.org/software/bison/) and the lexical
analyzer [flex](https://github.com/westes/flex) are required to build gr1c. Other
Yacc and lex compatible tools may suffice, but this has not been tested.

If the machine on which you are building has more than one CPU, then building
Expand Down Expand Up @@ -45,8 +45,8 @@ We will first build [CUDD](http://vlsi.colorado.edu/~fabio/CUDD/).

We mostly follow the steps as performed by the scripts listed above. To begin,
make a directory called `extern`. At the time of writing, the latest version is
3.0.0. Below we use [cURL](http://curl.haxx.se) to download it from the
command-line. Alternatively, [wget](http://www.gnu.org/software/wget/) can be
3.0.0. Below we use [cURL](https://curl.haxx.se) to download it from the
command-line. Alternatively, [wget](https://www.gnu.org/software/wget/) can be
used similarly. You might also try directing your Web browser at
<ftp://vlsi.colorado.edu/pub/>, or read CUDD documentation for instructions.

Expand Down Expand Up @@ -79,7 +79,7 @@ Before deploying gr1c and especially if you are building it yourself, run the
test suite from the source distribution. Testing covers optional features of
gr1c, so accordingly, optional dependencies become required for the purposes of
testing. If you were able to build `gr1c` as described above, then it suffices
to additionally install [Graphviz dot](http://www.graphviz.org/) and
to additionally install [Graphviz dot](https://www.graphviz.org/) and
[Spin](http://spinroot.com). Try

./get-extra-deps.sh
Expand Down Expand Up @@ -153,7 +153,7 @@ documentation...including the page you are now reading. Try

and the result will be under `doc/build`. Note that Doxygen version 1.8 or
later is required to build documentation files formatted with
[Markdown](http://daringfireball.net/projects/markdown), which have names ending
[Markdown](https://daringfireball.net/projects/markdown), which have names ending
in `.md` under `doc/`. For older versions, you can read Markdown files directly
using any plain text viewer. E.g., the main page is `doc/api_intro.md`, and
this page is `doc/installation.md`.
Expand Down

0 comments on commit 043e72e

Please sign in to comment.