Skip to content

Commit

Permalink
3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmeker authored and ningit committed Sep 25, 2024
1 parent 7bc69d1 commit cfcf562
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 55 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2024-06-05 Saruman the White <eker@eker10>
2024-06-05 Steven Eker <eker@eker10>

* INSTALL: added GNU automake to prerequisites

Expand Down
67 changes: 17 additions & 50 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,70 +8,37 @@ Rewriting logic is a logic of concurrent change that can naturally deal with sta

Maude supports in a systematic and efficient way logical reflection. This makes Maude remarkably extensible and powerful, supports an extensible algebra of module composition operations, and allows many advanced metaprogramming and metalanguage applications. Indeed, some of the most interesting applications of Maude are metalanguage applications, in which Maude is used to create executable environments for different logics, theorem provers, languages, and models of computation.

## Maude 3.4
## Get Maude

* Pseudo-random number generator objects
* Initial equality operator
* Meta-print to string operator and message pair
* LaTeX support
* =># search type
* Various optimizations
* Many bug fixes
The latest version of the Maude distribution can be downloaded from the [releases](https://github.com/maude-lang/Maude/releases) section of this repository. Some previous stable and development versions are also available there, together with a summary of their main changes. More detailed notes for each development release are kept in the [doc](doc) directory.

## Maude 3.3.1
Instructions on how to build Maude from source can be found in the [INSTALL](INSTALL) file.

* Restrictions on pseudo-parameters
* More overparsing
* Many bug fixes
## What's new in Maude 3.5

## Maude 3.3

* Support for object-oriented syntactic sugar (omods/oths)
* Parameterized constants and pconst constants
* generated-by importation mode
* show path states command
* show processed view command
* Better handling of runaway statements and commands
* More overparsing
* Many bug fixes

## Maude 3.2.2

* fixed bug where multiple instantiations (say via a theory-view) was generating bad internal names for sorts
* fixed bug where the first sort in a kind printed by show mod was including backquotes
* show desugared is now a documented feature
* desugar omod to mod, oth to th
* fixed bug where filtered variant unify crashed in the degenerate case where there were no variables
* fixed issue where SIGSTKSZ is no longer guaranteed to be a compile-time constant in glibc
* fixed issue with fileTest failing in environments when first user file handle is something other than 3

## Maude 3.2.1

* use filtered variant unification for unifying with goal when filter flag is passed to vu-narrow

## Maude 3.2

* Support for filtered variant unification in vu-narrow command
* Several improvements in unification modulo several axioms
* Several improvements of the external Maude I/O objects
* A command flag for the depth of searching for A/AU unifiers
* Some bugs fixed.
* Term disjunctions for vu-narrow
* Variant folding for vu-narrow
* Show frontier/most general states/path for vu-narrow
* States may now subsume their ancestors in vu-narrow
* Extra built-in operations for strings
* Initial equality operator handles more cases
* Reading from stdin steam supports continuation lines

## Documentation

The Maude manual for Maude 3.4 is available in [PDF format](http://maude.cs.illinois.edu/w/images/e/e9/Maude34manual.pdf)
and in [HTML](https://maude.lcc.uma.es/maude-manual/).
The Maude manual for Maude 3.5 is available in [PDF format](https://maude.cs.illinois.edu/manual.pdf)
and in [HTML](https://maude.lcc.uma.es/maude-manual/).
The source code for most of the examples used in the manual, together with the examples from the Maude book,
are available [here](http://maude.cs.illinois.edu/w/images/e/ef/Maude-3.4-manual-book-examples.zip).
are available [here](https://maude.cs.illinois.edu/manual-book-examples.zip).

Additional information on background, applications, and previous versions is available at its [official web site](http://maude.cs.uiuc.edu).
Additional information on background, applications, and previous versions is available at its [official web site](https://maude.cs.illinois.edu).

For help using Maude 3: [email protected]

Report bugs to: [email protected]
Report bugs to: [email protected]

## Copyright

Copyright 1997-2024 SRI International, Menlo Park, CA 94025, USA.

The Maude 3 interpreter is free software. See the file COPYING for copying permission.
The Maude 3 interpreter is free software. See the file [COPYING](COPYING) for copying permission.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Initialize autoconf stuff.
#
AC_INIT(Maude, 3.5beta, [[email protected]])
AC_INIT(Maude, 3.5, [[email protected]])
#
# Allow directory names that look like macros.
#
Expand Down
2 changes: 1 addition & 1 deletion src/Higher/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
2024-05-30 Steven Eker <eker@pup>

* narrowingFolder.cc (NarrowingFolder::getMostGeneralStates): fixed
bug where we werent' considering vfold flag
bug where we weren't considering vfold flag
(NarrowingFolder::insertState): fixed symmteric bug
(NarrowingFolder::cleanGraph): fixed symmetric bug
(NarrowingFolder::getUnreturnedStates): turn cerr into DebugInfo()
Expand Down
2 changes: 1 addition & 1 deletion src/Main/maude.sty
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
%
% LaTeX package for use with the -latex-log= feature.
% Version 3.5beta.
% Version 3.5.
%
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{maude}[2024/04/12 Package for Maude logs]
Expand Down
2 changes: 1 addition & 1 deletion src/Main/prelude.maude
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

***
*** Maude interpreter standard prelude.
*** Version 3.5beta.
*** Version 3.5.
***
*** Some of the overall structure is taken from the OBJ3
*** interpreter standard prelude.
Expand Down

0 comments on commit cfcf562

Please sign in to comment.