private void randomIzlazi() {
   for (int i = 0; i < this.brojIzlaznihVrijednosti; i++) {
     this.izlazneVrijednosti[i] = rand.nextBoolean();
   }
 }
 private void randomUlazi() {
   for (int i = 0; i < this.brojUlaznihVarijabli; i++) {
     this.ulaziKod[i] = rand.nextInt(0, redniBroj);
   }
 }