18 lines
344 B
PHP
18 lines
344 B
PHP
<?php
|
|
|
|
require_once "OpenEndedTask.php";
|
|
|
|
class TruthTableTask extends OpenEndedTask
|
|
{
|
|
public function __construct(array $a = null)
|
|
{
|
|
parent::__construct($a);
|
|
|
|
$this->setType("verilog");
|
|
}
|
|
|
|
public function randomize(): void
|
|
{
|
|
return parent::randomize(); // TODO: Change the autogenerated stub
|
|
}
|
|
} |