/* Copyright (c) 2005-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef TBB_examples_logic_sim_dlatch_H #define TBB_examples_logic_sim_dlatch_H #include "basics.hpp" class D_latch : public oneapi::tbb::flow::composite_node, std::tuple> { oneapi::tbb::flow::broadcast_node D_port; oneapi::tbb::flow::broadcast_node E_port; not_gate a_not; and_gate<2> first_and; and_gate<2> second_and; nor_gate<2> first_nor; nor_gate<2> second_nor; oneapi::tbb::flow::graph& my_graph; typedef oneapi::tbb::flow::composite_node, std::tuple> base_type; public: D_latch(oneapi::tbb::flow::graph& g) : base_type(g), my_graph(g), D_port(g), E_port(g), a_not(g), first_and(g), second_and(g), first_nor(g), second_nor(g) { make_edge(D_port, input_port<0>(a_not)); make_edge(D_port, input_port<1>(second_and)); make_edge(E_port, input_port<1>(first_and)); make_edge(E_port, input_port<0>(second_and)); make_edge(a_not, input_port<0>(first_and)); make_edge(first_and, input_port<0>(first_nor)); make_edge(second_and, input_port<1>(second_nor)); make_edge(first_nor, input_port<0>(second_nor)); make_edge(second_nor, input_port<1>(first_nor)); base_type::input_ports_type input_tuple(D_port, E_port); base_type::output_ports_type output_tuple(output_port<0>(first_nor), output_port<0>(second_nor)); base_type::set_external_ports(input_tuple, output_tuple); base_type::add_visible_nodes( D_port, E_port, a_not, first_and, second_and, first_nor, second_nor); } ~D_latch() {} }; #endif /* TBB_examples_logic_sim_dlatch_H */