SME 0.4.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package SME --version 0.4.2
NuGet\Install-Package SME -Version 0.4.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SME" Version="0.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SME --version 0.4.2
#r "nuget: SME, 0.4.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SME as a Cake Addin
#addin nuget:?package=SME&version=0.4.2

// Install SME as a Cake Tool
#tool nuget:?package=SME&version=0.4.2

Synchronous Message Exchange simulation and component library

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on SME:

Package Downloads
SME.AST

Abstract syntax tree builder for SME networks

SME.Tracer

Tracing module for SME networks

SME.GraphViz

GraphViz renderer for Synchronous Message Exchange

SME.VHDL

VHDL transpiler for SME networks

SME.CPP

C++ transpiler for SME networks

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.0 1,711 2/17/2022
0.4.4 1,410 4/27/2021
0.4.3 1,434 2/18/2021
0.4.2 1,621 9/16/2020
0.4.1-beta 969 6/26/2019
0.4.0-beta 1,101 2/19/2019
0.3.3-beta 1,390 3/22/2018
0.3.2 1,900 2/11/2018
0.3.1 1,854 12/11/2017
0.3.0 986 12/11/2017
0.1.0 1,524 5/3/2016

New in version 0.4.2 since 0.4.1-beta
***********
* Changes *
***********
- Updated to .NET Core 3.1.102. Newer versions won't work with VHDL code
generation.
- Processes are now run concurrently. There is still some false dependency
between them, due to buses, which results in processes not always running in
parallel.
- Changed when an SME simulation stops. The new default is to stop when all of
the simulation processes have finished. Stopping a simulation can also be
triggered by invoking `Simulation.Current.RequestStop()`.
- Processes can now inherit from an abstract class.
- Updated RAM components to give a warning, instead of throwing an exception,
when doing both a read and a write on the same address.
*********
* Fixes *
*********
- Fixed error with arrays containing default values being expanded into huge
initializations instead of using `others => `.
- Updated unit tests to correctly do testing.
- Updated examples to reflect proper SME.
- All examples are now also run as unit tests, as in they now verify their
output is correct.
- Removed GHDL warning about redundant `others` case.
- Updated Travis for continoues integration of the updated SME on the Debug
build.
- Fixed VHDL simulation, where a `RDY` flag wasn't properly set.
- Fixed overflow error when generating bit strings
- Flipped how arrays are initialized in the RAM templates.
- Added intermediate signals for buses in VHDL, which are both input for
processes and top-level output.
- Fixed handling of non-continoues enums.
- Removed unused flag in state machines.
- Reworked state machine transformations so they are more stable.
- Fixed premature bus loading performed by the .NET debugger.
- Fixed triggering of processes in VHDL.
- Fixed error with generating too many type definitions in VHDL.
- Fixed redundant variable definition for loop invariants.
- Fixed error with inner exceptions silently being "handled".
- Fixed export of arrays in VHDL.