Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions pylammpsmpi/utils/lammps.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,39 +54,6 @@ def _send_and_receive_dict(self, command, data=None):
input_dict={"command": command, "args": data}
)

def _send(self, command, data=None):
"""
Send a command to the Lammps Library executable

Parameters
----------
command : string
command to be send to the

data: optional, default None
data to be sent to the command

Returns
-------
None
"""
self._interface.send_dict({"command": command, "args": data})

def _receive(self):
"""
Receive data from the Lammps library

Parameters
----------
None

Returns
-------
data : string
data from the command
"""
return self._interface.receive_dict()

@property
def version(self):
"""
Expand Down