From 2f01904dd48810d8b7d051ffcfb7dec9f5c0f555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 21 Dec 2023 22:08:38 +0100 Subject: [PATCH] Fix power being interpreted as bold in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7646107..4787d88 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ count = c.count() print("Approximate count is: %d*2**%d" % (count[0], count[1])) ``` -The above will print that `Approximate count is: 11*2**16`. Since the largest variable in the clauses was 20, the system contained 2**20 (i.e. 1048576) potential models. However, some of these models were prohibited by the two clauses, and so only approximately 11*2**16 (i.e. 720896) models remained. +The above will print that `Approximate count is: 11*2**16`. Since the largest variable in the clauses was 20, the system contained 2\*\*20 (i.e. 1048576) potential models. However, some of these models were prohibited by the two clauses, and so only approximately 11*2\*\*16 (i.e. 720896) models remained. If you want to count over a projection set, you need to call `count(projection_set)`, for example: