summaryrefslogtreecommitdiff
path: root/tests/coq/hashmap_on_disk/HashmapMain_Funs.v
blob: b4351dc36cb4027b79fef8f7c7002049ed1382e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
(** THIS FILE WAS AUTOMATICALLY GENERATED BY AENEAS *)
(** [hashmap_main]: function definitions *)
Require Import Primitives.
Import Primitives.
Require Import Coq.ZArith.ZArith.
Local Open Scope Primitives_scope.
Require Export HashmapMain_Types.
Import HashmapMain_Types.
Require Export HashmapMain_Opaque.
Import HashmapMain_Opaque.
Module HashmapMain_Funs.

(** [hashmap_main::hashmap::hash_key] *)
Definition hashmap_hash_key_fwd (k : usize) : result usize := Return k.

(** [hashmap_main::hashmap::HashMap::{0}::allocate_slots] *)
Fixpoint hashmap_hash_map_allocate_slots_fwd
  (T : Type) (n : nat) (slots : vec (Hashmap_list_t T)) (n0 : usize) :
  result (vec (Hashmap_list_t T))
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n1 =>
    if n0 s= 0%usize
    then Return slots
    else (
      slots0 <- vec_push_back (Hashmap_list_t T) slots HashmapListNil;
      i <- usize_sub n0 1%usize;
      v <- hashmap_hash_map_allocate_slots_fwd T n1 slots0 i;
      Return v)
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::new_with_capacity] *)
Definition hashmap_hash_map_new_with_capacity_fwd
  (T : Type) (n : nat) (capacity : usize) (max_load_dividend : usize)
  (max_load_divisor : usize) :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    let v := vec_new (Hashmap_list_t T) in
    slots <- hashmap_hash_map_allocate_slots_fwd T n0 v capacity;
    i <- usize_mul capacity max_load_dividend;
    i0 <- usize_div i max_load_divisor;
    Return (mkHashmap_hash_map_t (0%usize) (max_load_dividend,
      max_load_divisor) i0 slots)
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::new] *)
Definition hashmap_hash_map_new_fwd
  (T : Type) (n : nat) : result (Hashmap_hash_map_t T) :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hm <-
      hashmap_hash_map_new_with_capacity_fwd T n0 (32%usize) (4%usize)
        (5%usize);
    Return hm
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::clear_slots] *)
Fixpoint hashmap_hash_map_clear_slots_fwd_back
  (T : Type) (n : nat) (slots : vec (Hashmap_list_t T)) (i : usize) :
  result (vec (Hashmap_list_t T))
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    let i0 := vec_len (Hashmap_list_t T) slots in
    if i s< i0
    then (
      slots0 <- vec_index_mut_back (Hashmap_list_t T) slots i HashmapListNil;
      i1 <- usize_add i 1%usize;
      slots1 <- hashmap_hash_map_clear_slots_fwd_back T n0 slots0 i1;
      Return slots1)
    else Return slots
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::clear] *)
Definition hashmap_hash_map_clear_fwd_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      v0 <- hashmap_hash_map_clear_slots_fwd_back T n0 v (0%usize);
      Return (mkHashmap_hash_map_t (0%usize) p i0 v0)
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::len] *)
Definition hashmap_hash_map_len_fwd
  (T : Type) (self : Hashmap_hash_map_t T) : result usize :=
  match self with | mkHashmap_hash_map_t i p i0 v => Return i end
.

(** [hashmap_main::hashmap::HashMap::{0}::insert_in_list] *)
Fixpoint hashmap_hash_map_insert_in_list_fwd
  (T : Type) (n : nat) (key : usize) (value : T) (ls : Hashmap_list_t T) :
  result bool
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey cvalue ls0 =>
      if ckey s= key
      then Return false
      else (
        b <- hashmap_hash_map_insert_in_list_fwd T n0 key value ls0; Return b)
    | HashmapListNil => Return true
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::insert_in_list] *)
Fixpoint hashmap_hash_map_insert_in_list_back
  (T : Type) (n : nat) (key : usize) (value : T) (ls : Hashmap_list_t T) :
  result (Hashmap_list_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey cvalue ls0 =>
      if ckey s= key
      then Return (HashmapListCons ckey value ls0)
      else (
        ls1 <- hashmap_hash_map_insert_in_list_back T n0 key value ls0;
        Return (HashmapListCons ckey cvalue ls1))
    | HashmapListNil =>
      let l := HashmapListNil in Return (HashmapListCons key value l)
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::insert_no_resize] *)
Definition hashmap_hash_map_insert_no_resize_fwd_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) (value : T)
  :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_mut_fwd (Hashmap_list_t T) v hash_mod;
      inserted <- hashmap_hash_map_insert_in_list_fwd T n0 key value l;
      if inserted
      then (
        i2 <- usize_add i 1%usize;
        l0 <- hashmap_hash_map_insert_in_list_back T n0 key value l;
        v0 <- vec_index_mut_back (Hashmap_list_t T) v hash_mod l0;
        Return (mkHashmap_hash_map_t i2 p i0 v0))
      else (
        l0 <- hashmap_hash_map_insert_in_list_back T n0 key value l;
        v0 <- vec_index_mut_back (Hashmap_list_t T) v hash_mod l0;
        Return (mkHashmap_hash_map_t i p i0 v0))
    end
  end
.

(** [core::num::u32::{9}::MAX] *)
Definition core_num_u32_max_body : result u32 := Return (4294967295%u32).
Definition core_num_u32_max_c : u32 := core_num_u32_max_body%global.

(** [hashmap_main::hashmap::HashMap::{0}::move_elements_from_list] *)
Fixpoint hashmap_hash_map_move_elements_from_list_fwd_back
  (T : Type) (n : nat) (ntable : Hashmap_hash_map_t T) (ls : Hashmap_list_t T)
  :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons k v tl =>
      ntable0 <- hashmap_hash_map_insert_no_resize_fwd_back T n0 ntable k v;
      ntable1 <-
        hashmap_hash_map_move_elements_from_list_fwd_back T n0 ntable0 tl;
      Return ntable1
    | HashmapListNil => Return ntable
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::move_elements] *)
Fixpoint hashmap_hash_map_move_elements_fwd_back
  (T : Type) (n : nat) (ntable : Hashmap_hash_map_t T)
  (slots : vec (Hashmap_list_t T)) (i : usize) :
  result ((Hashmap_hash_map_t T) * (vec (Hashmap_list_t T)))
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    let i0 := vec_len (Hashmap_list_t T) slots in
    if i s< i0
    then (
      l <- vec_index_mut_fwd (Hashmap_list_t T) slots i;
      let ls := mem_replace_fwd (Hashmap_list_t T) l HashmapListNil in
      ntable0 <-
        hashmap_hash_map_move_elements_from_list_fwd_back T n0 ntable ls;
      let l0 := mem_replace_back (Hashmap_list_t T) l HashmapListNil in
      slots0 <- vec_index_mut_back (Hashmap_list_t T) slots i l0;
      i1 <- usize_add i 1%usize;
      p <- hashmap_hash_map_move_elements_fwd_back T n0 ntable0 slots0 i1;
      let (ntable1, slots1) := p in
      Return (ntable1, slots1))
    else Return (ntable, slots)
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::try_resize] *)
Definition hashmap_hash_map_try_resize_fwd_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    max_usize <- scalar_cast U32 Usize core_num_u32_max_c;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let capacity := vec_len (Hashmap_list_t T) v in
      n1 <- usize_div max_usize 2%usize;
      let (i1, i2) := p in
      i3 <- usize_div n1 i1;
      if capacity s<= i3
      then (
        i4 <- usize_mul capacity 2%usize;
        ntable <- hashmap_hash_map_new_with_capacity_fwd T n0 i4 i1 i2;
        p0 <- hashmap_hash_map_move_elements_fwd_back T n0 ntable v (0%usize);
        let (ntable0, _) := p0 in
        match ntable0 with
        | mkHashmap_hash_map_t i5 p1 i6 v0 =>
          Return (mkHashmap_hash_map_t i (i1, i2) i6 v0)
        end)
      else Return (mkHashmap_hash_map_t i (i1, i2) i0 v)
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::insert] *)
Definition hashmap_hash_map_insert_fwd_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) (value : T)
  :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    self0 <- hashmap_hash_map_insert_no_resize_fwd_back T n0 self key value;
    i <- hashmap_hash_map_len_fwd T self0;
    match self0 with
    | mkHashmap_hash_map_t i0 p i1 v =>
      if i s> i1
      then (
        self1 <-
          hashmap_hash_map_try_resize_fwd_back T n0 (mkHashmap_hash_map_t i0 p
            i1 v);
        Return self1)
      else Return (mkHashmap_hash_map_t i0 p i1 v)
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::contains_key_in_list] *)
Fixpoint hashmap_hash_map_contains_key_in_list_fwd
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) : result bool :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey t ls0 =>
      if ckey s= key
      then Return true
      else (
        b <- hashmap_hash_map_contains_key_in_list_fwd T n0 key ls0; Return b)
    | HashmapListNil => Return false
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::contains_key] *)
Definition hashmap_hash_map_contains_key_fwd
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) :
  result bool
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_fwd (Hashmap_list_t T) v hash_mod;
      b <- hashmap_hash_map_contains_key_in_list_fwd T n0 key l;
      Return b
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get_in_list] *)
Fixpoint hashmap_hash_map_get_in_list_fwd
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) : result T :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey cvalue ls0 =>
      if ckey s= key
      then Return cvalue
      else (t <- hashmap_hash_map_get_in_list_fwd T n0 key ls0; Return t)
    | HashmapListNil => Fail_ Failure
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get] *)
Definition hashmap_hash_map_get_fwd
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) :
  result T
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_fwd (Hashmap_list_t T) v hash_mod;
      t <- hashmap_hash_map_get_in_list_fwd T n0 key l;
      Return t
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get_mut_in_list] *)
Fixpoint hashmap_hash_map_get_mut_in_list_fwd
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) : result T :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey cvalue ls0 =>
      if ckey s= key
      then Return cvalue
      else (t <- hashmap_hash_map_get_mut_in_list_fwd T n0 key ls0; Return t)
    | HashmapListNil => Fail_ Failure
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get_mut_in_list] *)
Fixpoint hashmap_hash_map_get_mut_in_list_back
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) (ret : T) :
  result (Hashmap_list_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey cvalue ls0 =>
      if ckey s= key
      then Return (HashmapListCons ckey ret ls0)
      else (
        ls1 <- hashmap_hash_map_get_mut_in_list_back T n0 key ls0 ret;
        Return (HashmapListCons ckey cvalue ls1))
    | HashmapListNil => Fail_ Failure
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get_mut] *)
Definition hashmap_hash_map_get_mut_fwd
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) :
  result T
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_mut_fwd (Hashmap_list_t T) v hash_mod;
      t <- hashmap_hash_map_get_mut_in_list_fwd T n0 key l;
      Return t
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::get_mut] *)
Definition hashmap_hash_map_get_mut_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) (ret : T) :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_mut_fwd (Hashmap_list_t T) v hash_mod;
      l0 <- hashmap_hash_map_get_mut_in_list_back T n0 key l ret;
      v0 <- vec_index_mut_back (Hashmap_list_t T) v hash_mod l0;
      Return (mkHashmap_hash_map_t i p i0 v0)
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::remove_from_list] *)
Fixpoint hashmap_hash_map_remove_from_list_fwd
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) :
  result (option T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey t tl =>
      if ckey s= key
      then
        let mv_ls :=
          mem_replace_fwd (Hashmap_list_t T) (HashmapListCons ckey t tl)
            HashmapListNil in
        match mv_ls with
        | HashmapListCons i cvalue tl0 => Return (Some cvalue)
        | HashmapListNil => Fail_ Failure
        end
      else (
        opt <- hashmap_hash_map_remove_from_list_fwd T n0 key tl; Return opt)
    | HashmapListNil => Return None
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::remove_from_list] *)
Fixpoint hashmap_hash_map_remove_from_list_back
  (T : Type) (n : nat) (key : usize) (ls : Hashmap_list_t T) :
  result (Hashmap_list_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    match ls with
    | HashmapListCons ckey t tl =>
      if ckey s= key
      then
        let mv_ls :=
          mem_replace_fwd (Hashmap_list_t T) (HashmapListCons ckey t tl)
            HashmapListNil in
        match mv_ls with
        | HashmapListCons i cvalue tl0 => Return tl0
        | HashmapListNil => Fail_ Failure
        end
      else (
        tl0 <- hashmap_hash_map_remove_from_list_back T n0 key tl;
        Return (HashmapListCons ckey t tl0))
    | HashmapListNil => Return HashmapListNil
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::remove] *)
Definition hashmap_hash_map_remove_fwd
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) :
  result (option T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_mut_fwd (Hashmap_list_t T) v hash_mod;
      x <- hashmap_hash_map_remove_from_list_fwd T n0 key l;
      match x with
      | None => Return None
      | Some x0 => i2 <- usize_sub i 1%usize; let _ := i2 in Return (Some x0)
      end
    end
  end
.

(** [hashmap_main::hashmap::HashMap::{0}::remove] *)
Definition hashmap_hash_map_remove_back
  (T : Type) (n : nat) (self : Hashmap_hash_map_t T) (key : usize) :
  result (Hashmap_hash_map_t T)
  :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hash <- hashmap_hash_key_fwd key;
    match self with
    | mkHashmap_hash_map_t i p i0 v =>
      let i1 := vec_len (Hashmap_list_t T) v in
      hash_mod <- usize_rem hash i1;
      l <- vec_index_mut_fwd (Hashmap_list_t T) v hash_mod;
      x <- hashmap_hash_map_remove_from_list_fwd T n0 key l;
      match x with
      | None =>
        l0 <- hashmap_hash_map_remove_from_list_back T n0 key l;
        v0 <- vec_index_mut_back (Hashmap_list_t T) v hash_mod l0;
        Return (mkHashmap_hash_map_t i p i0 v0)
      | Some x0 =>
        i2 <- usize_sub i 1%usize;
        l0 <- hashmap_hash_map_remove_from_list_back T n0 key l;
        v0 <- vec_index_mut_back (Hashmap_list_t T) v hash_mod l0;
        Return (mkHashmap_hash_map_t i2 p i0 v0)
      end
    end
  end
.

(** [hashmap_main::hashmap::test1] *)
Definition hashmap_test1_fwd (n : nat) : result unit :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    hm <- hashmap_hash_map_new_fwd u64 n0;
    hm0 <- hashmap_hash_map_insert_fwd_back u64 n0 hm (0%usize) (42%u64);
    hm1 <- hashmap_hash_map_insert_fwd_back u64 n0 hm0 (128%usize) (18%u64);
    hm2 <- hashmap_hash_map_insert_fwd_back u64 n0 hm1 (1024%usize) (138%u64);
    hm3 <- hashmap_hash_map_insert_fwd_back u64 n0 hm2 (1056%usize) (256%u64);
    i <- hashmap_hash_map_get_fwd u64 n0 hm3 (128%usize);
    if negb (i s= 18%u64)
    then Fail_ Failure
    else (
      hm4 <- hashmap_hash_map_get_mut_back u64 n0 hm3 (1024%usize) (56%u64);
      i0 <- hashmap_hash_map_get_fwd u64 n0 hm4 (1024%usize);
      if negb (i0 s= 56%u64)
      then Fail_ Failure
      else (
        x <- hashmap_hash_map_remove_fwd u64 n0 hm4 (1024%usize);
        match x with
        | None => Fail_ Failure
        | Some x0 =>
          if negb (x0 s= 56%u64)
          then Fail_ Failure
          else (
            hm5 <- hashmap_hash_map_remove_back u64 n0 hm4 (1024%usize);
            i1 <- hashmap_hash_map_get_fwd u64 n0 hm5 (0%usize);
            if negb (i1 s= 42%u64)
            then Fail_ Failure
            else (
              i2 <- hashmap_hash_map_get_fwd u64 n0 hm5 (128%usize);
              if negb (i2 s= 18%u64)
              then Fail_ Failure
              else (
                i3 <- hashmap_hash_map_get_fwd u64 n0 hm5 (1056%usize);
                if negb (i3 s= 256%u64) then Fail_ Failure else Return tt)))
        end))
  end
.

(** [hashmap_main::insert_on_disk] *)
Definition insert_on_disk_fwd
  (n : nat) (key : usize) (value : u64) (st : state) : result (state * unit) :=
  match n with
  | O => Fail_ OutOfFuel
  | S n0 =>
    p <- hashmap_utils_deserialize_fwd st;
    let (st0, hm) := p in
    hm0 <- hashmap_hash_map_insert_fwd_back u64 n0 hm key value;
    p0 <- hashmap_utils_serialize_fwd hm0 st0;
    let (st1, _) := p0 in
    Return (st1, tt)
  end
.

(** [hashmap_main::main] *)
Definition main_fwd : result unit := Return tt.

(** Unit test for [hashmap_main::main] *)
Check (main_fwd )%return.

End HashmapMain_Funs .