This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Example of a simple nurse scheduling problem.""" | |
from ortools.sat.python import cp_model | |
class Nurse: | |
def __init__(self, name, start): | |
self.name = name | |
self.start = start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def mock_api_stream(): | |
MESSAGE_CONTENTS = [ | |
"mess", | |
"age", | |
" start", | |
":", | |
" This", | |
" is", | |
" a", | |
" nice ", |
OlderNewer