MyskYko
a7476c65d8
kissat original
2025-03-04 17:39:59 -08:00
Alan Mishchenko
c25bf73466
Adding new external APIs.
2025-03-03 19:40:11 -08:00
Alan Mishchenko
e462caed8f
Adding new source files for the windows build.
2025-03-01 10:55:21 -08:00
alanminko
1b96863505
Merge pull request #375 from chenjunhao0315/master
...
Command rewire
2025-03-02 01:27:30 +07:00
alanminko
adbeffc145
Merge pull request #374 from wjrforcyber/fix_lib_pointer
...
Fix(Pointer): Fix the wrong value passed to size
2025-03-02 01:27:01 +07:00
alanminko
d0d1721bbe
Merge pull request #373 from wjrforcyber/fix_HMetis
...
Fix(write_hmetis): Remain the obj number when omitting POs explictly
2025-03-02 01:26:44 +07:00
jiunhaochen
083d3884dd
Command rewire
2025-03-01 23:44:55 +08:00
wjrforcyber
5632bb8892
Fix(Pointer): Fix the wrong value passed to size
...
Signed-off-by: wjrforcyber <wjrforcyber@163.com>
2025-03-01 21:03:51 +08:00
Alan Mishchenko
75ef06017d
LUT cascade mapping.
2025-02-27 13:40:11 -08:00
wjrforcyber
6046bbee4e
Update(EmptyLine): Remove empty line between data and comment
...
Due to the parsing issue here: https://github.com/kahypar/mt-kahypar/pull/205
Signed-off-by: wjrforcyber <wjrforcyber@163.com>
2025-02-27 16:42:29 +08:00
wjrforcyber
e9c7059274
Fix(write_hmetis): Remain the obj number when omit POs explictly
...
Signed-off-by: wjrforcyber <wjrforcyber@163.com>
2025-02-26 21:36:48 +08:00
Alan Mishchenko
45c250fb5b
New command &randsyn (fixing scalability issue).
2025-02-23 15:49:49 -08:00
Alan Mishchenko
a9d959acbe
Command "stochmap".
2025-02-23 15:47:28 -08:00
Alan Mishchenko
c4a10c728e
Suggested fix of an overflow in vectors (compiler error).
2025-02-23 15:47:00 -08:00
Alan Mishchenko
4f1b961d00
Suggested fix of an overflow in vectors.
2025-02-23 13:17:51 -08:00
Alan Mishchenko
9e35825e6b
New command &randsyn.
2025-02-21 13:20:15 -08:00
Alan Mishchenko
e5e1f76b21
Bug fix.
2025-02-14 14:41:01 -08:00
alanminko
0cbc9a851a
Merge pull request #368 from hriener/dau_fix
...
Increase buffer size to DAU_MAX_STR (=2000).
2025-02-15 05:30:48 +07:00
alanminko
57e504db7b
Merge pull request #362 from wjrforcyber/gz_lib_support
...
Feat(read_lib): Gz lib format support
2025-02-15 05:30:24 +07:00
alanminko
ee8e0370d5
Merge pull request #361 from letsintegreat/power-aware
...
Fix switching bug
2025-02-15 05:29:55 +07:00
alanminko
a2c6cb8fd4
Merge pull request #360 from wjrforcyber/fix_print_mffc
...
Fix(print_mffc): Missing condition when single output linked to CO
2025-02-15 05:29:37 +07:00
alanminko
4b6c35bd4d
Merge pull request #356 from wjrforcyber/choice_bug
...
Fix(&dch): choices bugs in &put
2025-02-15 05:29:14 +07:00
alanminko
8a96d02e33
Merge pull request #354 from wjrforcyber/write_hmetis
...
Feat(write_hmetis): Enable hMetis format
2025-02-15 05:28:50 +07:00
alanminko
a2e4c153c9
Merge pull request #255 from phsauter/fix-scl-regression
...
Fix Segfault in scl
2025-02-15 05:28:25 +07:00
Heinz Riener
80eecea409
Increase buffer size to DAU_MAX_STR (=2000).
2025-02-14 15:49:17 +01:00
alanminko
7bd782382e
Merge pull request #367 from MyskYko/rrr
...
New implementation
2025-02-14 06:19:30 +07:00
MyskYko
f51543457d
change default parameter
2025-02-13 12:40:48 -08:00
Alan Mishchenko
775dee4de9
Fixing timing propagation bug in &nf with boxes.
2025-02-12 18:41:12 -08:00
MyskYko
20a57ef343
change dsp
2025-02-12 06:16:09 -08:00
MyskYko
23c632f113
compilation error
2025-02-12 06:16:09 -08:00
MyskYko
b0153e0f57
fix template
2025-02-12 06:16:09 -08:00
MyskYko
d1d861f703
fix template
2025-02-12 06:16:09 -08:00
MyskYko
6e3b38c7d3
add rrr
2025-02-12 06:16:02 -08:00
alanminko
aa9630e169
Merge pull request #365 from QuantamHD/fix_nf_crash
...
nf: Fix assert( pDp->F < FLT_MAX ); in nf
2025-02-12 08:34:50 +07:00
alanminko
c4f8e8e88b
Merge pull request #364 from QuantamHD/fix_mising_return
...
Fixes missing return in cec
2025-02-12 08:34:21 +07:00
Alan Mishchenko
b7bf6c20b6
Improvements to LUT cascade mapping.
2025-02-11 17:32:19 -08:00
Ethan Mahintorabi
2227d6d4e7
nf: Fix assert( pDp->F < FLT_MAX ); in nf
...
This error was triggered by what appears to be a missing
saturating float check in Nf_ManCutMatchOne. When opened
in the debugger AreaF starts at FLT_MAX and in some cases
can be added to itself which results in +Inf. I noticed the
other if had a saturating condidtion.
I took a flyer on it, and added it to the previous condition,
and it resolved the error. I think this is a good fix.
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
2025-02-11 22:04:24 +00:00
Ethan Mahintorabi
964170d8dc
Fixes missing return in cec
...
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
2025-02-10 05:44:31 +00:00
Alan Mishchenko
8912d3aabe
Adding command &write_truth equivalent to &write_truths.
2025-01-29 17:40:17 -08:00
Alan Mishchenko
3e86444510
Bug fix in reading truth tables.
2025-01-29 17:37:24 -08:00
wjrforcyber
303907ec0c
Update(read_lib): Remove redundant header
2025-01-21 15:58:31 +08:00
wjrforcyber
adf9b4e7fb
Feat(read_lib): Support .gz file
2025-01-21 15:54:38 +08:00
letsintegreat
a75d0cb0ad
fix switching bug
2025-01-18 22:41:24 +05:30
wjrforcyber
910a66a372
Fix(print_mffc): Missing condition when single output linked to CO
2025-01-17 18:31:14 +08:00
wjrforcyber
a03c126a13
Refactor(Redundant): Remove redundant code
2025-01-09 23:39:02 +08:00
wjrforcyber
c1ac7d8153
Update(&ps): Revert two line since `cls` shows the same data
2025-01-09 23:04:00 +08:00
wjrforcyber
8c7c9d0ccf
Fix(&dch): choices bugs in &put
2025-01-09 22:21:32 +08:00
Alan Mishchenko
d5e1a5d445
Bug fix in &gencex.
2025-01-02 00:33:22 +07:00
Alan Mishchenko
350dcd3ea4
Enabling shared variables in bound set evaluation.
2024-12-28 00:05:00 -08:00
wjrforcyber
71b3daf0f6
Merge remote-tracking branch 'upstream/master' into write_hmetis
2024-12-26 20:58:17 +08:00