From 31fa06ec3ba057b47c93b08653bb82b53e82d10e Mon Sep 17 00:00:00 2001 From: Louis Date: Wed, 4 Oct 2023 22:18:38 +0200 Subject: [PATCH] vault backup: 2023-10-04 22:18:38 --- Algo/CM/CM du 04 octobre.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Algo/CM/CM du 04 octobre.md b/Algo/CM/CM du 04 octobre.md index 2f7c938..1f2274d 100644 --- a/Algo/CM/CM du 04 octobre.md +++ b/Algo/CM/CM du 04 octobre.md @@ -26,7 +26,11 @@ nth(v,i)=i ``` That an consistency, because the two `nth`axioms are contradictory -The completeness is when we have enough axioms for our abstract type +The completeness is when we have enough axioms for our abstract type : +1. **Completeness**: Axioms should provide a complete and unambiguous specification of the ADT's behavior. This means that they should cover all possible scenarios and outcomes for the ADT's operations. Users of the ADT should be able to rely on these axioms to understand how the ADT behaves in different situations. + +2. **Consistency**: Axioms should be consistent with each other and with the intended behavior of the ADT. This means that the axioms should not contradict each other, and they should accurately reflect the expected behavior of the ADT's operations. Inconsistent axioms can lead to confusion and incorrect usage of the ADT. + To use partial operations we have to create some preconditions