Skip to content

Commit 5a701c5

Browse files
committed
Revert to 093014c
1 parent 12a87fd commit 5a701c5

9 files changed

Lines changed: 1194 additions & 15 deletions

File tree

.github/workflows/soundness_check.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v4
14-
with:
15-
submodules: 'true'
1614

1715
- name: Install Valgrind
1816
run: sudo apt-get update && sudo apt-get install -y valgrind

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

action.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,6 @@ inputs:
5959
runs:
6060
using: "composite"
6161
steps:
62-
- name: Init submodules
63-
shell: bash
64-
run: |
65-
set -e
66-
cd "$GITHUB_ACTION_PATH"
67-
git submodule update --init --recursive
68-
6962
- name: Install uv
7063
uses: astral-sh/setup-uv@v6
7164
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "partdiff_tester"
3-
version = "0.1.6"
3+
version = "0.1.4"
44
description = "Correctness checker for partdiff"
55
readme = "README.md"
66
requires-python = ">=3.13"

reference_implementation

Lines changed: 0 additions & 1 deletion
This file was deleted.

reference_implementation/COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

reference_implementation/Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
CFLAGS = -std=c11 -Wall -Wextra -Wpedantic -O3 -g
2+
LDFLAGS = $(CFLAGS)
3+
LDLIBS = -lm
4+
5+
all: partdiff
6+
7+
partdiff: partdiff.o
8+
9+
clean:
10+
$(RM) partdiff.o partdiff

0 commit comments

Comments
 (0)