@@ -535,9 +535,9 @@ results.v
535535tags: [remove-cell]
536536---
537537@testset "Value Function Tests" begin
538- @ test results.v[2] ≈ 20.017402216959912
539- @ test results.v[4] ≈ 20.749453024528794
540- @ test results.v[end] ≈ 23.277617618874903 # Also an implicit length check
538+ # test results.v[2] ≈ 20.017402216959912
539+ # test results.v[4] ≈ 20.749453024528794
540+ # test results.v[end] ≈ 23.277617618874903 # Also an implicit length check
541541end
542542```
543543
@@ -621,7 +621,7 @@ std_2 = stationary_distributions(results_2.mc)[1]
621621tags: [remove-cell]
622622---
623623@testset "Patience Shock Tests" begin
624- @ test std_2[3] ≈ 0.03147788040836169
624+ # test std_2[3] ≈ 0.03147788040836169
625625end
626626```
627627
@@ -683,7 +683,7 @@ results = solve(ddp, PFI)
683683tags: [remove-cell]
684684---
685685@testset "State-Action Pair Tests" begin
686- @ test results.v[4] ≈ 20.749453024528794 # Some checks on the returned solutions.
686+ # test results.v[4] ≈ 20.749453024528794 # Some checks on the returned solutions.
687687 @test results.sigma == [1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 6, 6, 6, 6]
688688end
689689```
@@ -774,7 +774,7 @@ R = u_log.(C[C.>0]);
774774tags: [remove-cell]
775775---
776776@testset "R Tests" begin
777- @ test R[4] ≈ -2.873514275079717
777+ # test R[4] ≈ -2.873514275079717
778778 @test length(R) == 118841
779779end
780780```
@@ -809,7 +809,7 @@ num_iter
809809tags: [remove-cell]
810810---
811811@testset "Results Test" begin
812- @ test v[4] ≈ -42.301381867365954
812+ # test v[4] ≈ -42.301381867365954
813813 @test σ[4] == 10
814814 @test num_iter ≤ 10
815815end
@@ -834,9 +834,9 @@ c_star(k) = (1 - α * β) * k.^α
834834tags: [remove-cell]
835835---
836836@testset "Comparison Tests" begin
837- @ test c2 ≈ 1.699346405228758
838- @ test c_star(c2) ≈ 0.5399016884304844
839- @ test ab ≈ 0.6174999999999999
837+ # test c2 ≈ 1.699346405228758
838+ # test c_star(c2) ≈ 0.5399016884304844
839+ # test ab ≈ 0.6174999999999999
840840end
841841```
842842
@@ -932,7 +932,7 @@ res1.num_iter
932932tags: [remove-cell]
933933---
934934@testset "Equivalence Test" begin
935- @ test σ == res1.sigma
935+ # test σ == res1.sigma
936936end
937937```
938938
@@ -954,7 +954,7 @@ res2.num_iter
954954tags: [remove-cell]
955955---
956956@testset "Other Equivalence Test" begin
957- @ test σ == res2.sigma
957+ # test σ == res2.sigma
958958end
959959```
960960
@@ -992,8 +992,8 @@ plot!(grid, v_star.(grid), label = "true value function", color = :red, lw = 2)
992992tags: [remove-cell]
993993---
994994@testset "Plots Test" begin
995- @ test ws[4][5] ≈ -37.93858578025213
996- @ test v_star.(grid)[4] ≈ -42.29801689484901
995+ # test ws[4][5] ≈ -37.93858578025213
996+ # test v_star.(grid)[4] ≈ -42.29801689484901
997997end
998998```
999999
@@ -1042,10 +1042,10 @@ plot(grid,
10421042tags: [remove-cell]
10431043---
10441044@testset "New Tests" begin
1045- @ test true_c[5] ≈ 0.026055057901168556
1046- @ test c_policies[1][5] ≈ 0.016012616069698123
1047- @ test c_policies[2][5] ≈ 0.02402864412581035
1048- @ test c_policies[3][5] ≈ 0.02402864412581035
1045+ # test true_c[5] ≈ 0.026055057901168556
1046+ # test c_policies[1][5] ≈ 0.016012616069698123
1047+ # test c_policies[2][5] ≈ 0.02402864412581035
1048+ # test c_policies[3][5] ≈ 0.02402864412581035
10491049end
10501050```
10511051
@@ -1093,9 +1093,9 @@ tags: [remove-cell]
10931093---
10941094@testset "Final Tests" begin
10951095 @test k_init_ind == 26
1096- @ test k_paths[3][2] ≈ 0.14829751903807614
1097- @ test k_paths[2][5] ≈ 0.21242574348697396
1098- @ test k_paths[1][7] ≈ 0.20841772945891784
1096+ # test k_paths[3][2] ≈ 0.14829751903807614
1097+ # test k_paths[2][5] ≈ 0.21242574348697396
1098+ # test k_paths[1][7] ≈ 0.20841772945891784
10991099end
11001100```
11011101
0 commit comments