Skip to content

Commit

Permalink
docs: changelog and readme added
Browse files Browse the repository at this point in the history
  • Loading branch information
nfbruns committed Jun 26, 2024
1 parent 9f59fdd commit 2ccc905
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
2 changes: 2 additions & 0 deletions batsat/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/Cargo.lock
11 changes: 11 additions & 0 deletions batsat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

All notable changes to this project will be documented in this file.

## [0.2.4] - 2024-04-10

### 🚀 Features

- Implemented batsat api

<!-- generated by git-cliff -->
18 changes: 18 additions & 0 deletions batsat/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[![Check & Test](https://github.com/chrjabs/rustsat/actions/workflows/batsat.yml/badge.svg)](https://github.com/chrjabs/rustsat/actions/workflows/batsat.yml)
[![crates.io](https://img.shields.io/crates/v/rustsat-batsat)](https://crates.io/crates/rustsat-batsat)
[![docs.rs](https://img.shields.io/docsrs/rustsat-batsat)](https://docs.rs/rustsat-batsat)
[![License](https://img.shields.io/crates/l/rustsat-batsat)](../LICENSE)

<!-- cargo-rdme start -->

# rustsat-batsat - Interface to the BatSat SAT Solver for RustSAT

The BatSat solver to be used with the [RustSAT](https://github.com/chrjabs/rustsat) library.

## Features

## BatSat Version

The version of BatSat in this crate is Version 0.5.0.

<!-- cargo-rdme end -->
4 changes: 2 additions & 2 deletions batsat/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! # Minisat Solver Interface Without Preprocessing (Core)
//! # BatSat Solver Interface
//!
//! Interface to the [Minisat](https://github.com/niklasso/minisat) incremental
//! Interface to the [Minisat](https://github.com/c-cube/batsat) incremental
//! SAT solver.
use batsat::{intmap::AsIndex, lbool, BasicSolver, SolverInterface};
Expand Down

0 comments on commit 2ccc905

Please sign in to comment.