ABxM.Core 1.5.4

dotnet add package ABxM.Core --version 1.5.4
NuGet\Install-Package ABxM.Core -Version 1.5.4
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="ABxM.Core" Version="1.5.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ABxM.Core --version 1.5.4
#r "nuget: ABxM.Core, 1.5.4"
#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 ABxM.Core as a Cake Addin
#addin nuget:?package=ABxM.Core&version=1.5.4

// Install ABxM.Core as a Cake Tool
#tool nuget:?package=ABxM.Core&version=1.5.4

The ABxM Framework provides an open platform for experimentation with agent-based, aka individual-based, systems. The aim of the framework is to "standardize" research equipment, in this case the tools for modeling and simulation, in order to increase transparency of agent-based models, and repeatability of research results. Its main application can be seen in the modeling and simulation of dynamic systems that can be conceived of as consisting of locally interacting, discrete entities that have autonomy and goal-orientation. These models and simulations can be explorative (divergent) or goal-oriented (convergent) as, for example, when used for optimization. The framework is composed of a set of class libraries organized around the core agent library ABxM.Core. The main usage scenario for domain-specific applications is to expand the functionality of the framework by building an add-on while using the core as the common infrastructure.

The ABxM.Core consists of the agent core library ABxM.Core and an interoperability library for Rhino 6 and later versions. ABxM.Core implements the functionality specific to agent-based modelling and simulation. The core library can, in principle, be referenced from any application that is compatible with McNeel’s Rhino.Inside technology.

ABxM.Core defines four base classes for behaviors, agents, agent systems, and environments, and the Solver class. In addition to the base classes, the core library provides implementations for Vector-based systems called “Boid” (in reference to Craig Reynolds’ Boids), point-based systems called “Cartesian”, matrix-based systems (2d and 3d), mesh systems, and network systems. The necessary agent, system, environment, and behavior classes are derived from the corresponding base classes.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.4 197 3/15/2024
1.5.3 420 2/7/2024
1.4.0 1,116 4/14/2023

This release introduces the following changes to ABxM.Core:

### CartesianAgentSystem
* Bug fix:
- A slide input to a behavior caused the Cartesian agents to reset.