Mark Thom
|
fc7d98d748
|
Merge pull request #1780 from triska/tuples_in
Various improvements to tuples_in/2
|
2023-04-12 19:10:50 +02:00 |
|
Markus Triska
|
5dce7d9075
|
FIXED: enforce equality also for ground elements in tuples
Example:
?- tuples_in([[A,B]], [[1,2],[3,4]]),
tuples_in([[A,B]], [[3,2]]).
false.
See https://github.com/SWI-Prolog/swipl-devel/issues/1160.
|
2023-04-11 22:33:19 +02:00 |
|
Markus Triska
|
f08f539768
|
do not create attributed variables for ground tuples
|
2023-04-11 21:26:18 +02:00 |
|
Markus Triska
|
be45672e22
|
actually disable and reenable the queue
|
2023-04-11 21:26:18 +02:00 |
|
Markus Triska
|
94efb9ffe3
|
remove no longer needed clpz_relation attributes
|
2023-04-11 21:26:18 +02:00 |
|
Markus Triska
|
fd1e902492
|
do not leave an attribute when (re-)enabling a queue
|
2023-04-11 21:14:18 +02:00 |
|
Mark Thom
|
8d6e3d7d56
|
Merge pull request #1776 from infogulch/master
Add iso prolog / logtalk tests to test runner
|
2023-04-07 06:09:08 +02:00 |
|
infogulch
|
a197bb6815
|
Allow the test suite to fail without failing the build
|
2023-04-06 09:40:03 -05:00 |
|
infogulch
|
9de8456c7f
|
Add logtalk test suite
|
2023-04-02 17:31:20 -05:00 |
|
infogulch
|
ebf8091dba
|
Test workflow cleanup; switch to macos-11
|
2023-04-02 14:47:52 -05:00 |
|
Mark Thom
|
47ce84b273
|
Merge pull request #1772 from triska/number_chars
FIXED: number_chars(N, "0' "), addressing #1580.
|
2023-04-02 19:24:59 +02:00 |
|
Mark Thom
|
449e097f4a
|
Merge pull request #1774 from infogulch/master
Optimize Test GH action
|
2023-04-02 19:24:36 +02:00 |
|
Markus Triska
|
fe27605497
|
FIXED: number_chars(N, "0' "), addressing #1580.
There may be a more elegant way to solve this.
|
2023-04-02 10:04:52 +02:00 |
|
infogulch
|
8792ee438c
|
Add cache step to test workflow
|
2023-04-02 02:09:41 -05:00 |
|
Mark Thom
|
7279062d3c
|
Merge pull request #1770 from triska/doc
Smaller documentation improvements to explain compilation and target directory
|
2023-04-01 23:28:19 +02:00 |
|
Markus Triska
|
b87fe1e21f
|
DOC: link to "Indexing dif/2"
|
2023-04-01 11:04:37 +02:00 |
|
Markus Triska
|
d6ac125425
|
DOC: explain location of scryer-prolog after compilation
This question was recently raised on the #scryer IRC channel.
|
2023-04-01 11:04:37 +02:00 |
|
Markus Triska
|
b79d8732ea
|
use the release flag so that the instructions can be used verbatim
Also, the location of the executable depends on this flag.
|
2023-04-01 11:04:33 +02:00 |
|
Markus Triska
|
3df0806017
|
change "run" to "build", since "run" leads to a Scryer prompt which can be unexpected
|
2023-04-01 11:03:31 +02:00 |
|
Mark Thom
|
c7759aa737
|
Merge pull request #1769 from triska/show_pending_constraints
ENHANCED: use call_residue_vars/2 to show all pending constraints
|
2023-03-31 04:51:34 +02:00 |
|
Markus Triska
|
8ab1155fc5
|
ENHANCED: use call_residue_vars/2 to show all pending constraints
Example:
?- freeze(_, false).
freeze:freeze(_A,false).
This was originally added in 04ba9bc11a,
then reverted, and is now restored.
|
2023-03-30 23:49:33 +02:00 |
|
Mark Thom
|
adc77985d7
|
broaden the definition of alpha_char! (#1749, #1515, #1591)
|
2023-03-26 11:10:46 -06:00 |
|
Mark Thom
|
d85fc7c9f8
|
Merge pull request #1765 from mthom/dependabot/cargo/openssl-0.10.48
Bump openssl from 0.10.42 to 0.10.48
|
2023-03-25 06:20:00 +01:00 |
|
dependabot[bot]
|
41b083c962
|
Bump openssl from 0.10.42 to 0.10.48
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.42 to 0.10.48.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.42...openssl-v0.10.48)
---
updated-dependencies:
- dependency-name: openssl
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
|
2023-03-25 01:27:40 +00:00 |
|
Mark Thom
|
4ee6a7bfb8
|
add '$unattributed_var' builtin (#1758)
|
2023-03-18 23:08:38 -06:00 |
|
Mark Thom
|
6e53d08d40
|
Merge pull request #1759 from triska/better_queue
Better queue
|
2023-03-16 04:34:33 +01:00 |
|
Markus Triska
|
01285f12c3
|
remove no longer needed queue attributes after propagation
|
2023-03-15 21:17:06 +01:00 |
|
Markus Triska
|
cd586aab8c
|
show remaining queue/2 attributes as residual goals
This lets us verify that all attributes are correctly removed earlier.
|
2023-03-15 19:56:02 +01:00 |
|
Mark Thom
|
4da646252b
|
Revert "correct call_residue_vars/3 using new copy_term_3 (#1239)"
This reverts commit 9b35a316c9.
|
2023-03-14 21:34:49 -06:00 |
|
Mark Thom
|
cc8bb38abc
|
Revert "use new call_residue_vars/2 in toplevel.pl (#847)"
This reverts commit 04ba9bc11a.
|
2023-03-14 21:34:48 -06:00 |
|
Mark Thom
|
04ba9bc11a
|
use new call_residue_vars/2 in toplevel.pl (#847)
|
2023-03-12 17:56:54 -06:00 |
|
Mark Thom
|
9b35a316c9
|
correct call_residue_vars/3 using new copy_term_3 (#1239)
|
2023-03-12 17:56:54 -06:00 |
|
Mark Thom
|
3a522f3c98
|
Merge pull request #1757 from aarroyoc/fix-docs-1756
DOCS: Fixes #1756
|
2023-03-12 18:26:54 +01:00 |
|
Adrián Arroyo Calle
|
4c44859132
|
Fixes #1756
|
2023-03-12 16:47:20 +01:00 |
|
Mark Thom
|
ecd77f7512
|
Merge pull request #1755 from triska/doc
various smaller documentation improvements
|
2023-03-10 02:40:29 +01:00 |
|
Markus Triska
|
56bd596af3
|
use actual toplevel answers
|
2023-03-08 23:35:11 +01:00 |
|
Markus Triska
|
21acb9361a
|
use string notation as discussed on #scryer IRC
|
2023-03-08 23:32:05 +01:00 |
|
Markus Triska
|
c3477d8476
|
items --> elements
This addresses #1740.
|
2023-03-08 23:31:02 +01:00 |
|
Mark Thom
|
cba09d4ea1
|
Merge pull request #1754 from triska/dif
ENHANCED: more compact definition of dif/2
|
2023-03-08 21:48:34 +01:00 |
|
Markus Triska
|
884b0ca10e
|
FIXED: Take all variables into account during goal projection.
This addresses #1751.
|
2023-03-08 21:16:54 +01:00 |
|
Markus Triska
|
c9ecfb11d9
|
ENHANCED: more compact definition of dif/2
As outlined in #1753.
|
2023-03-08 20:50:33 +01:00 |
|
Mark Thom
|
9288dcabe9
|
Merge pull request #1744 from aarroyoc/ffi
Foreign Function Interface - library(ffi)
|
2023-03-02 21:57:56 +01:00 |
|
Adrián Arroyo Calle
|
73df96244d
|
Fill more cases
|
2023-03-01 22:13:04 +01:00 |
|
Adrián Arroyo Calle
|
7396630627
|
Merge branch 'master' into ffi
|
2023-02-28 22:10:40 +01:00 |
|
Adrián Arroyo Calle
|
0ac93751d0
|
FFI: Documentation
|
2023-02-28 22:09:35 +01:00 |
|
Mark Thom
|
400ca21213
|
invoke '$default_attr_list' in project_attributes.pl (#1748)
|
2023-02-26 22:42:02 -07:00 |
|
Mark Thom
|
3286e78cd2
|
third argument of copy_term should be instantiated as a list (#1747)
|
2023-02-26 22:42:02 -07:00 |
|
Mark Thom
|
24eb9ce483
|
Merge pull request #1746 from triska/type_over_instantiation_error
ENHANCED: must_be/2: prefer type error over instantiation error
|
2023-02-26 23:46:23 +01:00 |
|
Markus Triska
|
3dc6ed79d2
|
ENHANCED: must_be/2: prefer type error over instantiation error
This addresses #1594.
|
2023-02-26 22:28:18 +01:00 |
|
Adrián Arroyo Calle
|
f94294dbd9
|
FFI: Nested structs
|
2023-02-26 20:48:00 +01:00 |
|