Guest User

Untitled

a guest
May 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Parameters with no dependencies:
  2. A: 1,2,3,4,5,6,7,8
  3. B: 10,11,12,13
  4. Parameters with depency:
  5. C: true, false.
  6. C1: (Dependent on C)
  7. if true: 1,2,3,4,5,6
  8. if false: 1 (C1 will have just one value - the first value)
  9. C2: (Dependent on C)
  10. if true: 10,11,12,13,14,15,16,17
  11. if false: 10 (C2 will have just one value - the first value)
  12. D: true, false.
  13. D1: (Dependent on D)
  14. if true: true, false.
  15. if false: true (D1 will have just one value - the first value)
  16. D2: (Dependent on D)
  17. if true: 1,2,3,4,5,6
  18. if false: 1 (D2 will have just one value - the first value)
  19. D3: (Dependent on D)
  20. if true: 10,11,12,13,14,15,16,17
  21. if false: 10 (D3 will have just one value - the first value)
  22.  
  23. A: 1
  24. B: 10
  25. C: true
  26. C1: 1
  27. C2: 10
  28. D: true
  29. D1: true
  30. D2: 1
  31. D3: 10
  32.  
  33. A: 6
  34. B: 11
  35. C: true (Because this is true the dependent parameters will have all the possible values)
  36. C1: 5
  37. C2: 17
  38. D: false (Because this is false the dependent parameters will have the first value only)
  39. D1: true
  40. D2: 1
  41. D3: 10
Add Comment
Please, Sign In to add comment